From 7cdaa24f3ba637804aca9247ae809c4cc1acc6ed Mon Sep 17 00:00:00 2001 From: lipengwei <lipengwei@nianben.com> Date: Wed, 27 May 2020 09:41:28 +0800 Subject: [PATCH] 3.8.4 --- 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