@@ -136,7 +136,7 @@ NS_REQUIRES_PROPERTY_DEFINITIONS
136136
137137 @param key The key for which to return the corresponding value.
138138 */
139- - (__nullable id )objectForKey : (NSString *)key ;
139+ - (nullable id )objectForKey : (NSString *)key ;
140140
141141/* !
142142 @abstract Sets the object associated with a given key.
@@ -168,7 +168,7 @@ NS_REQUIRES_PROPERTY_DEFINITIONS
168168
169169 @see objectForKey:
170170 */
171- - (__nullable id )objectForKeyedSubscript : (NSString *)key ;
171+ - (nullable id )objectForKeyedSubscript : (NSString *)key ;
172172
173173/* !
174174 @abstract Returns the value associated with a given key.
@@ -335,7 +335,7 @@ NS_REQUIRES_PROPERTY_DEFINITIONS
335335 `error` will be `nil` on success and set if there was an error.
336336 `[result boolValue]` will tell you whether the call succeeded or not.
337337 */
338- - (void )saveInBackgroundWithTarget : (__nullable id )target selector : (__nullable SEL )selector ;
338+ - (void )saveInBackgroundWithTarget : (nullable id )target selector : (nullable SEL )selector ;
339339
340340/* !
341341 @abstract Saves this object to the server at some unspecified time in the future,
@@ -429,8 +429,8 @@ NS_REQUIRES_PROPERTY_DEFINITIONS
429429 `[result boolValue]` will tell you whether the call succeeded or not.
430430 */
431431+ (void )saveAllInBackground:(nullable NSArray PF_GENERIC (PFObject *)*)objects
432- target:(__nullable id )target
433- selector:(__nullable SEL )selector;
432+ target:(nullable id )target
433+ selector:(nullable SEL )selector;
434434
435435// /--------------------------------------
436436// / @name Deleting Many Objects
@@ -483,8 +483,8 @@ NS_REQUIRES_PROPERTY_DEFINITIONS
483483 `[result boolValue]` will tell you whether the call succeeded or not.
484484 */
485485+ (void )deleteAllInBackground:(nullable NSArray PF_GENERIC (PFObject *)*)objects
486- target:(__nullable id )target
487- selector:(__nullable SEL )selector;
486+ target:(nullable id )target
487+ selector:(nullable SEL )selector;
488488
489489// /--------------------------------------
490490// / @name Getting an Object
@@ -536,8 +536,8 @@ NS_REQUIRES_PROPERTY_DEFINITIONS
536536
537537 @deprecated Please use `fetchInBackgroundWithTarget:selector:` instead.
538538 */
539- - (void )refreshInBackgroundWithTarget:(__nullable id )target
540- selector:(__nullable SEL )selector PARSE_DEPRECATED (" Please use `fetchInBackgroundWithTarget:selector:` instead." );
539+ - (void )refreshInBackgroundWithTarget:(nullable id )target
540+ selector:(nullable SEL )selector PARSE_DEPRECATED (" Please use `fetchInBackgroundWithTarget:selector:` instead." );
541541
542542#endif
543543
@@ -588,7 +588,7 @@ NS_REQUIRES_PROPERTY_DEFINITIONS
588588 `error` will be `nil` on success and set if there was an error.
589589 `refreshedObject` will be the `PFObject` with the refreshed data.
590590 */
591- - (void )fetchInBackgroundWithTarget : (__nullable id )target selector : (__nullable SEL )selector ;
591+ - (void )fetchInBackgroundWithTarget : (nullable id )target selector : (nullable SEL )selector ;
592592
593593/* !
594594 @abstract Fetches the `PFObject` data *asynchronously* if isDataAvailable is `NO`,
@@ -615,7 +615,7 @@ NS_REQUIRES_PROPERTY_DEFINITIONS
615615 `error` will be `nil` on success and set if there was an error.
616616 `refreshedObject` will be the `PFObject` with the refreshed data.
617617 */
618- - (void )fetchIfNeededInBackgroundWithTarget : (__nullable id )target selector : (__nullable SEL )selector ;
618+ - (void )fetchIfNeededInBackgroundWithTarget : (nullable id )target selector : (nullable SEL )selector ;
619619
620620// /--------------------------------------
621621// / @name Getting Many Objects
@@ -636,7 +636,7 @@ NS_REQUIRES_PROPERTY_DEFINITIONS
636636 @param error Pointer to an `NSError` that will be set if necessary.
637637 */
638638+ (nullable NSArray PF_GENERIC (__kindof PFObject *)*)fetchAll:(nullable NSArray PF_GENERIC (PFObject *)*)objects
639- error:(NSError **)error;
639+ error:(NSError **)error;
640640
641641/* !
642642 @abstract *Synchronously* fetches all of the `PFObject` objects with the current data from the server.
@@ -652,7 +652,7 @@ NS_REQUIRES_PROPERTY_DEFINITIONS
652652 @param error Pointer to an `NSError` that will be set if necessary.
653653 */
654654+ (nullable NSArray PF_GENERIC (__kindof PFObject *)*)fetchAllIfNeeded:(nullable NSArray PF_GENERIC (PFObject *)*)objects
655- error:(NSError **)error;
655+ error:(NSError **)error;
656656
657657/* !
658658 @abstract Fetches all of the `PFObject` objects with the current data from the server *asynchronously*.
@@ -686,8 +686,8 @@ NS_REQUIRES_PROPERTY_DEFINITIONS
686686 `fetchedObjects` will the array of `PFObject` objects that were fetched.
687687 */
688688+ (void )fetchAllInBackground:(nullable NSArray PF_GENERIC (PFObject *)*)objects
689- target:(__nullable id )target
690- selector:(__nullable SEL )selector;
689+ target:(nullable id )target
690+ selector:(nullable SEL )selector;
691691
692692/* !
693693 @abstract Fetches all of the `PFObject` objects with the current data from the server *asynchronously*.
@@ -721,8 +721,8 @@ NS_REQUIRES_PROPERTY_DEFINITIONS
721721 `fetchedObjects` will the array of `PFObject` objects that were fetched.
722722 */
723723+ (void )fetchAllIfNeededInBackground:(nullable NSArray PF_GENERIC (PFObject *)*)objects
724- target:(__nullable id )target
725- selector:(__nullable SEL )selector;
724+ target:(nullable id )target
725+ selector:(nullable SEL )selector;
726726
727727// /--------------------------------------
728728// / @name Fetching From Local Datastore
@@ -806,8 +806,8 @@ NS_REQUIRES_PROPERTY_DEFINITIONS
806806 `error` will be `nil` on success and set if there was an error.
807807 `[result boolValue]` will tell you whether the call succeeded or not.
808808 */
809- - (void )deleteInBackgroundWithTarget : (__nullable id )target
810- selector : (__nullable SEL )selector ;
809+ - (void )deleteInBackgroundWithTarget : (nullable id )target
810+ selector : (nullable SEL )selector ;
811811
812812/* !
813813 @abstract Deletes this object from the server at some unspecified time in the future,
0 commit comments