Преглед на файлове

remove line break in method

DaidoujiChen преди 12 години
родител
ревизия
4206a3a5f9
променени са 1 файла, в които са добавени 1 реда и са изтрити 3 реда
  1. 1 3
      Classes/Editing/Argument Input Views/FLEXArgumentInputFontsPickerView.m

+ 1 - 3
Classes/Editing/Argument Input Views/FLEXArgumentInputFontsPickerView.m

@@ -35,9 +35,7 @@
     if ([self.availableFonts indexOfObject:inputValue] == NSNotFound) {
         [self.availableFonts insertObject:inputValue atIndex:0];
     }
-    [(UIPickerView*)self.inputTextView.inputView selectRow:[self.availableFonts indexOfObject:inputValue]
-                                               inComponent:0
-                                                  animated:NO];
+    [(UIPickerView*)self.inputTextView.inputView selectRow:[self.availableFonts indexOfObject:inputValue] inComponent:0 animated:NO];
 }
 
 - (id)inputValue