From f082c62bb40cad3ee93abd5432777ac0905eb374 Mon Sep 17 00:00:00 2001 From: lipengwei <lipengwei@nianben.com> Date: Fri, 27 Sep 2019 11:16:00 +0800 Subject: [PATCH] 3.8.3 --- frameworks/FBSDKCoreKit.framework/Headers/FBSDKCopying.h | 16 +++++++++++----- 1 files changed, 11 insertions(+), 5 deletions(-) diff --git a/frameworks/FBSDKCoreKit.framework/Headers/FBSDKCopying.h b/frameworks/FBSDKCoreKit.framework/Headers/FBSDKCopying.h index f4ad767..fc938bb 100644 --- a/frameworks/FBSDKCoreKit.framework/Headers/FBSDKCopying.h +++ b/frameworks/FBSDKCoreKit.framework/Headers/FBSDKCopying.h @@ -18,16 +18,22 @@ #import <Foundation/Foundation.h> -/*! - @abstract Extension protocol for NSCopying that adds the copy method, which is implemented on NSObject. - @discussion NSObject<NSCopying> implicitly conforms to this protocol. +NS_ASSUME_NONNULL_BEGIN + +/** + Extension protocol for NSCopying that adds the copy method, which is implemented on NSObject. + + NSObject<NSCopying> implicitly conforms to this protocol. */ +NS_SWIFT_NAME(Copying) @protocol FBSDKCopying <NSCopying, NSObject> -/*! - @abstract Implemented by NSObject as a convenience to copyWithZone:. +/** + Implemented by NSObject as a convenience to copyWithZone:. @return A copy of the receiver. */ - (id)copy; @end + +NS_ASSUME_NONNULL_END -- Gitblit v1.8.0