Просмотр исходного кода

Not breaking method declarations in multiple lines for consistency

Javier Soto лет назад: 12
Родитель
Сommit
b1bf34cdcd

+ 1 - 2
Classes/Global State Explorers/FLEXGlobalsTableViewController.h

@@ -25,8 +25,7 @@
 /// @note This method must be called from the main thread.
 /// The objectFutureBlock will be invoked from the main thread and may return nil.
 /// @note The passed block will be copied and retain for the duration of the application, you may want to use __weak references.
-+ (void)registerGlobalEntryWithName:(NSString *)entryName
-                  objectFutureBlock:(id(^)(void))objectFutureBlock;
++ (void)registerGlobalEntryWithName:(NSString *)entryName objectFutureBlock:(id(^)(void))objectFutureBlock;
 
 @end
 

+ 2 - 4
Classes/Global State Explorers/FLEXGlobalsTableViewController.m

@@ -26,15 +26,13 @@ static NSMutableArray *s_globalEntries = nil;
 @property (nonatomic, readonly, copy) FLEXGlobalsTableViewControllerEntryNameFuture entryName;
 @property (nonatomic, readonly, copy) FLEXGlobalsTableViewControllerViewControllerFuture viewControllerToPush;
 
-+ (instancetype)entryWithName:(FLEXGlobalsTableViewControllerEntryNameFuture)name
-         viewControllerToPush:(FLEXGlobalsTableViewControllerViewControllerFuture)viewControllerToPush;
++ (instancetype)entryWithName:(FLEXGlobalsTableViewControllerEntryNameFuture)name viewControllerToPush:(FLEXGlobalsTableViewControllerViewControllerFuture)viewControllerToPush;
 
 @end
 
 @implementation FLEXGlobalsTableViewControllerEntry
 
-+ (instancetype)entryWithName:(FLEXGlobalsTableViewControllerEntryNameFuture)name
-         viewControllerToPush:(FLEXGlobalsTableViewControllerViewControllerFuture)viewControllerToPush
++ (instancetype)entryWithName:(FLEXGlobalsTableViewControllerEntryNameFuture)name viewControllerToPush:(FLEXGlobalsTableViewControllerViewControllerFuture)viewControllerToPush
 {
     NSParameterAssert(name);
     NSParameterAssert(viewControllerToPush);