whitespace tidyups

This commit is contained in:
Richard Frith-Macdonald 2020-09-30 09:45:38 +01:00
parent 2a522739cb
commit f381b5f09b

View file

@ -93,7 +93,7 @@ typedef NSInteger NSOperationQueuePriority;
/** Returns all the dependencies of the receiver in the order in which they
* were added.
*/
- (NSArray *)dependencies;
- (NSArray *) dependencies;
/** This method should return YES if the -cancel method has been called.<br />
* NB. a cancelled operation may still be executing.
@ -208,8 +208,8 @@ typedef NSInteger NSOperationQueuePriority;
}
// Managing the blocks in the Operation
+ (instancetype)blockOperationWithBlock: (GSBlockOperationBlock)block;
- (void)addExecutionBlock: (GSBlockOperationBlock)block;
+ (instancetype) blockOperationWithBlock: (GSBlockOperationBlock)block;
- (void) addExecutionBlock: (GSBlockOperationBlock)block;
- (NSArray *) executionBlocks;
@end