From bf63695cd124ba0c3127f4cc8aa99c737729dd1d Mon Sep 17 00:00:00 2001
From: hank <hank.zhang@proficientcity.com>
Date: Tue, 22 Jan 2019 11:11:33 +0800
Subject: [PATCH] [Update] WAFbImpl (3.8.0)

---
 frameworks/FBSDKLoginKit.framework/Headers/FBSDKLoginManagerLoginResult.h |   33 +++++++++++++++++++--------------
 1 files changed, 19 insertions(+), 14 deletions(-)

diff --git a/frameworks/FBSDKLoginKit.framework/Headers/FBSDKLoginManagerLoginResult.h b/frameworks/FBSDKLoginKit.framework/Headers/FBSDKLoginManagerLoginResult.h
index 36a1af6..6601011 100644
--- a/frameworks/FBSDKLoginKit.framework/Headers/FBSDKLoginManagerLoginResult.h
+++ b/frameworks/FBSDKLoginKit.framework/Headers/FBSDKLoginManagerLoginResult.h
@@ -20,35 +20,40 @@
 
 @class FBSDKAccessToken;
 
-/*!
- @abstract Describes the result of a login attempt.
+/**
+  Describes the result of a login attempt.
  */
 @interface FBSDKLoginManagerLoginResult : NSObject
 
-/*!
- @abstract the access token.
+- (instancetype)init NS_UNAVAILABLE;
++ (instancetype)new NS_UNAVAILABLE;
+
+/**
+  the access token.
  */
 @property (copy, nonatomic) FBSDKAccessToken *token;
 
-/*!
- @abstract whether the login was cancelled by the user.
+/**
+  whether the login was cancelled by the user.
  */
 @property (readonly, nonatomic) BOOL isCancelled;
 
-/*!
- @abstract the set of permissions granted by the user in the associated request.
- @discussion inspect the token's permissions set for a complete list.
+/**
+  the set of permissions granted by the user in the associated request.
+
+ inspect the token's permissions set for a complete list.
  */
 @property (copy, nonatomic) NSSet *grantedPermissions;
 
-/*!
- @abstract the set of permissions declined by the user in the associated request.
- @discussion inspect the token's permissions set for a complete list.
+/**
+  the set of permissions declined by the user in the associated request.
+
+ inspect the token's permissions set for a complete list.
  */
 @property (copy, nonatomic) NSSet *declinedPermissions;
 
-/*!
- @abstract Initializes a new instance.
+/**
+  Initializes a new instance.
  @param token the access token
  @param isCancelled whether the login was cancelled by the user
  @param grantedPermissions the set of granted permissions

--
Gitblit v1.8.0