Browse Source

Remove double semicolon (#348)

Javier Navarro 6 years ago
parent
commit
67359023f4
1 changed files with 1 additions and 1 deletions
  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;
 }