Skip to content

Commit

Permalink
[google_sign_in] Fix Obj-C formatting bug (flutter#5310)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
stuartmorgan authored Nov 2, 2023
1 parent 8aef4b8 commit 5842d3d
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,9 @@ - (void)getAccessTokenWithCompletion:(nonnull void (^)(FSITokenData *_Nullable,
}];
}

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

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

0 comments on commit 5842d3d

Please sign in to comment.