Explorar el Código

Remove double semicolon (#348)

Javier Navarro hace 6 años
padre
commit
67359023f4
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      Classes/Editing/FLEXMethodCallingViewController.m

+ 1 - 1
Classes/Editing/FLEXMethodCallingViewController.m

@@ -30,7 +30,7 @@
     if (self) {
         self.method = method;
         self.returnType = [FLEXRuntimeUtility returnTypeForMethod:method];
-        self.title = [self isClassMethod] ? @"Class Method" : @"Method";;
+        self.title = [self isClassMethod] ? @"Class Method" : @"Method";
     }
     return self;
 }