Skip to content

Commit 5842d3d

Browse files
[google_sign_in] Fix Obj-C formatting bug (flutter#5310)
Fix a formatting mistake from the conversion to Pigeon; the `;` here doesn't affect the behavior, but it's confusing, and makes the autoformatter unhappy.
1 parent 8aef4b8 commit 5842d3d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

packages/google_sign_in/google_sign_in_ios/ios/Classes/FLTGoogleSignInPlugin.m

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,9 @@ - (void)getAccessTokenWithCompletion:(nonnull void (^)(FSITokenData *_Nullable,
173173
}];
174174
}
175175

176-
- (void)signOutWithError:(FlutterError *_Nullable *_Nonnull)error;
177-
{ [self.signIn signOut]; }
176+
- (void)signOutWithError:(FlutterError *_Nullable *_Nonnull)error {
177+
[self.signIn signOut];
178+
}
178179

179180
- (void)disconnectWithCompletion:(nonnull void (^)(FlutterError *_Nullable))completion {
180181
[self.signIn disconnectWithCallback:^(NSError *error) {

0 commit comments

Comments
 (0)