ソースを参照

Not breaking method declarations in multiple lines for consistency

Javier Soto 12 年 前
コミット
b1bf34cdcd
共有2 個のファイルを変更した3 個の追加6 個の削除を含む
  1. 1 2
      Classes/Global State Explorers/FLEXGlobalsTableViewController.h
  2. 2 4
      Classes/Global State Explorers/FLEXGlobalsTableViewController.m

+ 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);