Skip to content

Commit 59d1172

Browse files
committed
changes from review
1 parent 26a118a commit 59d1172

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

GoogleSignIn/Sources/GIDSignIn.m

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -186,8 +186,6 @@ @implementation GIDSignIn {
186186
// Flag indicating developer's intent to use App Check.
187187
BOOL _configureAppCheckCalled;
188188
#endif // TARGET_OS_IOS && !TARGET_OS_MACCATALYST
189-
// Service for performing auth state migrations.
190-
GIDAuthStateMigration *_authStateMigrationService;
191189
}
192190

193191
#pragma mark - Public methods
@@ -540,7 +538,7 @@ - (void)configureDebugProviderWithAPIKey:(NSString *)APIKey
540538
#pragma mark - Private methods
541539

542540
- (instancetype)initWithKeychainStore:(GTMKeychainStore *)keychainStore
543-
authStateMigrationService:(GIDAuthStateMigration *) authStateMigrationService {
541+
authStateMigrationService:(GIDAuthStateMigration *)authStateMigrationService {
544542
self = [super init];
545543
if (self) {
546544
// Get the bundle of the current executable.
@@ -578,7 +576,7 @@ - (instancetype)initWithKeychainStore:(GTMKeychainStore *)keychainStore
578576

579577
#if TARGET_OS_IOS && !TARGET_OS_MACCATALYST
580578
- (instancetype)initWithKeychainStore:(GTMKeychainStore *)keychainStore
581-
authStateMigrationService:(GIDAuthStateMigration *) authStateMigrationService
579+
authStateMigrationService:(GIDAuthStateMigration *)authStateMigrationService
582580
appCheck:(GIDAppCheck *)appCheck {
583581
self = [self initWithKeychainStore:keychainStore
584582
authStateMigrationService:authStateMigrationService];

0 commit comments

Comments
 (0)