From b19a78b27247f5f0761c35b5b3e8a41876eabb05 Mon Sep 17 00:00:00 2001
From: lpw <pengwei.li@gamehollywood.com>
Date: Tue, 20 Apr 2021 17:18:32 +0800
Subject: [PATCH] no message

---
 frameworks/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnection.h |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/frameworks/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnection.h b/frameworks/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnection.h
index 6dc8057..397277e 100644
--- a/frameworks/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnection.h
+++ b/frameworks/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnection.h
@@ -32,7 +32,7 @@
 FOUNDATION_EXPORT NSString *const FBSDKNonJSONResponseProperty
 NS_SWIFT_NAME(NonJSONResponseProperty);
 
-@class FBSDKGraphRequest;
+@protocol FBSDKGraphRequest;
 @class FBSDKGraphRequestConnection;
 
 /**
@@ -184,7 +184,7 @@
  The property is nil until the request completes.  If there was a response
  then this property will be non-nil during the FBSDKGraphRequestBlock callback.
  */
-@property (nonatomic, retain, readonly) NSHTTPURLResponse *urlResponse;
+@property (nonatomic, retain, readonly, nullable) NSHTTPURLResponse *urlResponse;
 
 /**
  Determines the operation queue that is used to call methods on the connection's delegate.
@@ -213,7 +213,7 @@
  The completion handler is retained until the block is called upon the
  completion or cancellation of the connection.
  */
-- (void)addRequest:(FBSDKGraphRequest *)request
+- (void)addRequest:(id<FBSDKGraphRequest>)request
  completionHandler:(FBSDKGraphRequestBlock)handler;
 
 /**
@@ -235,7 +235,7 @@
  completion or cancellation of the connection. This request can be named
  to allow for using the request's response in a subsequent request.
  */
-- (void)addRequest:(FBSDKGraphRequest *)request
+- (void)addRequest:(id<FBSDKGraphRequest>)request
     batchEntryName:(NSString *)name
  completionHandler:(FBSDKGraphRequestBlock)handler;
 
@@ -256,8 +256,8 @@
  completion or cancellation of the connection. This request can be named
  to allow for using the request's response in a subsequent request.
  */
-- (void)addRequest:(FBSDKGraphRequest *)request
-   batchParameters:(NSDictionary<NSString *, id> *)batchParameters
+- (void)addRequest:(id<FBSDKGraphRequest>)request
+   batchParameters:(nullable NSDictionary<NSString *, id> *)batchParameters
  completionHandler:(FBSDKGraphRequestBlock)handler;
 
 /**

--
Gitblit v1.8.0