@@ -491,7 +491,7 @@ + (GIDSignIn *)sharedInstance {
491491 GTMKeychainStore *keychainStore =
492492 [[GTMKeychainStore alloc ] initWithItemName: kGTMAppAuthKeychainName ];
493493 GIDAuthStateMigration *authStateMigrationService =
494- [[GIDAuthStateMigration alloc ] initWithKeychainStore: keychainStore];
494+ [[GIDAuthStateMigration alloc ] initWithKeychainStore: keychainStore];
495495#if TARGET_OS_IOS && !TARGET_OS_MACCATALYST
496496 if (@available (iOS 14.0 , *)) {
497497 GIDAppCheck *appCheck = [GIDAppCheck appCheckUsingAppAttestProvider ];
@@ -501,7 +501,8 @@ + (GIDSignIn *)sharedInstance {
501501 }
502502#endif // TARGET_OS_IOS && !TARGET_OS_MACCATALYST
503503 if (!sharedInstance) {
504- sharedInstance = [[self alloc ] initWithKeychainStore: keychainStore authStateMigrationService: authStateMigrationService];
504+ sharedInstance = [[self alloc ] initWithKeychainStore: keychainStore
505+ authStateMigrationService: authStateMigrationService];
505506 }
506507 });
507508 return sharedInstance;
@@ -566,9 +567,9 @@ - (instancetype)initWithKeychainStore:(GTMKeychainStore *)keychainStore
566567 _keychainStore = keychainStore;
567568 // Perform migration of auth state from old versions of the SDK if needed.
568569 [authStateMigrationService migrateIfNeededWithTokenURL: _appAuthConfiguration.tokenEndpoint
569- callbackPath: kBrowserCallbackPath
570- keychainName: kGTMAppAuthKeychainName
571- isFreshInstall: isFreshInstall];
570+ callbackPath: kBrowserCallbackPath
571+ keychainName: kGTMAppAuthKeychainName
572+ isFreshInstall: isFreshInstall];
572573 }
573574 return self;
574575}
@@ -577,7 +578,8 @@ - (instancetype)initWithKeychainStore:(GTMKeychainStore *)keychainStore
577578- (instancetype )initWithKeychainStore : (GTMKeychainStore *)keychainStore
578579 authStateMigrationService : (GIDAuthStateMigration *) authStateMigrationService
579580 appCheck : (GIDAppCheck *)appCheck {
580- self = [self initWithKeychainStore: keychainStore authStateMigrationService: authStateMigrationService];
581+ self = [self initWithKeychainStore: keychainStore
582+ authStateMigrationService: authStateMigrationService];
581583 if (self) {
582584 _appCheck = appCheck;
583585 _configureAppCheckCalled = NO ;
0 commit comments