From 9fdbb77fd2d766c9aa88f6753108354592770058 Mon Sep 17 00:00:00 2001
From: hank <hank.zhang@proficientcity.com>
Date: Thu, 20 Jun 2019 09:50:53 +0800
Subject: [PATCH] [Update] WAFbImpl (3.8.2)

---
 frameworks/FBSDKCoreKit.framework/Headers/FBSDKURL.h |   10 ++++++++--
 1 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/frameworks/FBSDKCoreKit.framework/Headers/FBSDKURL.h b/frameworks/FBSDKCoreKit.framework/Headers/FBSDKURL.h
index e0e3d4c..12726a0 100644
--- a/frameworks/FBSDKCoreKit.framework/Headers/FBSDKURL.h
+++ b/frameworks/FBSDKCoreKit.framework/Headers/FBSDKURL.h
@@ -26,7 +26,11 @@
  Provides a set of utilities for working with NSURLs, such as parsing of query parameters
  and handling for App Link requests.
  */
+NS_SWIFT_NAME(AppLinkURL)
 @interface FBSDKURL : NSObject
+
+- (instancetype)init NS_UNAVAILABLE;
++ (instancetype)new NS_UNAVAILABLE;
 
 /*!
  Creates a link target from a raw URL.
@@ -35,7 +39,8 @@
  to support better FBSDKMeasurementEvent notifications
  @param url The instance of `NSURL` to create FBSDKURL from.
  */
-+ (FBSDKURL *)URLWithURL:(NSURL *)url;
++ (instancetype)URLWithURL:(NSURL *)url
+NS_SWIFT_NAME(init(url:));
 
 /*!
  Creates a link target from a raw URL received from an external application. This is typically called from the app delegate's
@@ -43,7 +48,8 @@
  @param url The instance of `NSURL` to create FBSDKURL from.
  @param sourceApplication the bundle ID of the app that is requesting your app to open the URL. The same sourceApplication in application:openURL:sourceApplication:annotation:
  */
-+ (FBSDKURL *)URLWithInboundURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication;
++ (instancetype)URLWithInboundURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication
+NS_SWIFT_NAME(init(inboundURL:sourceApplication:));
 
 /*!
  Gets the target URL.  If the link is an App Link, this is the target of the App Link.

--
Gitblit v1.8.0