@@ -27,7 +27,7 @@ extern NSInteger const PARSE_API_VERSION;
2727#define PARSE_IOS_ONLY (TARGET_OS_IPHONE)
2828#define PARSE_OSX_ONLY (TARGET_OS_MAC && !(TARGET_OS_IPHONE))
2929
30- extern NSString *const __nonnull kPFDeviceType ;
30+ extern NSString *const _Nonnull kPFDeviceType ;
3131
3232// /--------------------------------------
3333#pragma mark - Cache Policies
@@ -123,7 +123,7 @@ typedef NS_ENUM(uint8_t, PFLogLevel) {
123123#pragma mark - Errors
124124// /--------------------------------------
125125
126- extern NSString *const __nonnull PFParseErrorDomain;
126+ extern NSString *const _Nonnull PFParseErrorDomain;
127127
128128/* *
129129 `PFErrorCode` enum contains all custom error codes that are used as `code` for `NSError` for callbacks on all classes.
@@ -359,17 +359,17 @@ typedef NS_ENUM(NSInteger, PFErrorCode) {
359359#pragma mark - Blocks
360360// /--------------------------------------
361361
362- typedef void (^PFBooleanResultBlock)(BOOL succeeded, NSError *__nullable error);
363- typedef void (^PFIntegerResultBlock)(int number, NSError *__nullable error);
364- typedef void (^PFArrayResultBlock)(NSArray *__nullable objects, NSError *__nullable error);
365- typedef void (^PFObjectResultBlock)(PFObject *__nullable object, NSError *__nullable error);
366- typedef void (^PFSetResultBlock)(NSSet *__nullable channels, NSError *__nullable error);
367- typedef void (^PFUserResultBlock)(PFUser *__nullable user, NSError *__nullable error);
368- typedef void (^PFDataResultBlock)(NSData *__nullable data, NSError *__nullable error);
369- typedef void (^PFDataStreamResultBlock)(NSInputStream *__nullable stream, NSError *__nullable error);
370- typedef void (^PFFilePathResultBlock)(NSString *__nullable filePath, NSError *__nullable error);
371- typedef void (^PFStringResultBlock)(NSString *__nullable string, NSError *__nullable error);
372- typedef void (^PFIdResultBlock)(__nullable id object, NSError *__nullable error);
362+ typedef void (^PFBooleanResultBlock)(BOOL succeeded, NSError *_Nullable error);
363+ typedef void (^PFIntegerResultBlock)(int number, NSError *_Nullable error);
364+ typedef void (^PFArrayResultBlock)(NSArray *_Nullable objects, NSError *_Nullable error);
365+ typedef void (^PFObjectResultBlock)(PFObject *_Nullable object, NSError *_Nullable error);
366+ typedef void (^PFSetResultBlock)(NSSet *_Nullable channels, NSError *_Nullable error);
367+ typedef void (^PFUserResultBlock)(PFUser *_Nullable user, NSError *_Nullable error);
368+ typedef void (^PFDataResultBlock)(NSData *_Nullable data, NSError *_Nullable error);
369+ typedef void (^PFDataStreamResultBlock)(NSInputStream *_Nullable stream, NSError *_Nullable error);
370+ typedef void (^PFFilePathResultBlock)(NSString *_Nullable filePath, NSError *_Nullable error);
371+ typedef void (^PFStringResultBlock)(NSString *_Nullable string, NSError *_Nullable error);
372+ typedef void (^PFIdResultBlock)(_Nullable id object, NSError *_Nullable error);
373373typedef void (^PFProgressBlock)(int percentDone);
374374
375375// /--------------------------------------
@@ -379,30 +379,30 @@ typedef void (^PFProgressBlock)(int percentDone);
379379/* *
380380 The name of the notification that is going to be sent before any URL request is sent.
381381 */
382- extern NSString *const __nonnull PFNetworkWillSendURLRequestNotification;
382+ extern NSString *const _Nonnull PFNetworkWillSendURLRequestNotification;
383383
384384/* *
385385 The name of the notification that is going to be sent after any URL response is received.
386386 */
387- extern NSString *const __nonnull PFNetworkDidReceiveURLResponseNotification;
387+ extern NSString *const _Nonnull PFNetworkDidReceiveURLResponseNotification;
388388
389389/* *
390390 The key of request(NSURLRequest) in the userInfo dictionary of a notification.
391391 @note This key is populated in userInfo, only if `PFLogLevel` on `Parse` is set to `PFLogLevelDebug`.
392392 */
393- extern NSString *const __nonnull PFNetworkNotificationURLRequestUserInfoKey;
393+ extern NSString *const _Nonnull PFNetworkNotificationURLRequestUserInfoKey;
394394
395395/* *
396396 The key of response(NSHTTPURLResponse) in the userInfo dictionary of a notification.
397397 @note This key is populated in userInfo, only if `PFLogLevel` on `Parse` is set to `PFLogLevelDebug`.
398398 */
399- extern NSString *const __nonnull PFNetworkNotificationURLResponseUserInfoKey;
399+ extern NSString *const _Nonnull PFNetworkNotificationURLResponseUserInfoKey;
400400
401401/* *
402402 The key of repsonse body (usually `NSString` with JSON) in the userInfo dictionary of a notification.
403403 @note This key is populated in userInfo, only if `PFLogLevel` on `Parse` is set to `PFLogLevelDebug`.
404404 */
405- extern NSString *const __nonnull PFNetworkNotificationURLResponseBodyUserInfoKey;
405+ extern NSString *const _Nonnull PFNetworkNotificationURLResponseBodyUserInfoKey;
406406
407407
408408// /--------------------------------------
0 commit comments