Skip to content

Commit 422353b

Browse files
committed
Missing semicolons
1 parent e9dca08 commit 422353b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/firebase_crashlytics/darwin/Classes/FirebaseCrashlyticsPlugin.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,9 @@ - (void)handleMethodCall:(FlutterMethodCall *)call result:(FlutterResult)result
8888
NSException *exception = [NSException
8989
exceptionWithName:call.arguments[@"exception"]
9090
reason:reason
91-
userInfo:stack]
91+
userInfo:stack];
9292

93-
[[FIRCrashlytics crashlytics] recordError:exception]
93+
[[FIRCrashlytics crashlytics] recordError:exception];
9494
result(@"Error reported to Crashlytics.");
9595
} else if ([@"Crashlytics#setUserIdentifier" isEqualToString:call.method]) {
9696
[[FIRCrashlytics crashlytics] setUserID:call.arguments[@"identifier"]];

0 commit comments

Comments
 (0)