aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firebase/Auth/Source/AuthProviders/Phone/FIRPhoneAuthProvider.m
diff options
context:
space:
mode:
authorGravatar Zsika Phillip <protocol86@users.noreply.github.com>2017-09-17 22:12:53 -0700
committerGravatar GitHub <noreply@github.com>2017-09-17 22:12:53 -0700
commita34d091971d05ef8e2625074157eb9ff6dda3cbd (patch)
treeb13b49aa983c1c6ff6696c2524e74958ec8a8f21 /Firebase/Auth/Source/AuthProviders/Phone/FIRPhoneAuthProvider.m
parentb79950072d349d2b3665b05c71cf5cb9953ef6ed (diff)
Removes unused Fir_authPhoneNumber (#277)
Removes references of unused Fir_authPhoneNumber and accompanying class.
Diffstat (limited to 'Firebase/Auth/Source/AuthProviders/Phone/FIRPhoneAuthProvider.m')
-rw-r--r--Firebase/Auth/Source/AuthProviders/Phone/FIRPhoneAuthProvider.m5
1 files changed, 0 insertions, 5 deletions
diff --git a/Firebase/Auth/Source/AuthProviders/Phone/FIRPhoneAuthProvider.m b/Firebase/Auth/Source/AuthProviders/Phone/FIRPhoneAuthProvider.m
index 5d22fc4..0a59d52 100644
--- a/Firebase/Auth/Source/AuthProviders/Phone/FIRPhoneAuthProvider.m
+++ b/Firebase/Auth/Source/AuthProviders/Phone/FIRPhoneAuthProvider.m
@@ -20,7 +20,6 @@
#import "FIRLogger.h"
#import "FIRPhoneAuthCredential_Internal.h"
-#import "NSString+FIRAuth.h"
#import "FIRApp.h"
#import "FIRAuthAPNSToken.h"
#import "FIRAuthAPNSTokenManager.h"
@@ -194,8 +193,6 @@ NSString *const kReCAPTCHAURLStringFormat = @"https://%@/__/auth/handler?%@";
callBackOnMainThread(nil, error);
return;
}
- // Associate the phone number with the verification ID.
- response.verificationID.fir_authPhoneNumber = phoneNumber;
callBackOnMainThread(response.verificationID, nil);
}];
}];
@@ -381,8 +378,6 @@ NSString *const kReCAPTCHAURLStringFormat = @"https://%@/__/auth/handler?%@";
callback(nil, error);
return;
}
- // Associate the phone number with the verification ID.
- response.verificationID.fir_authPhoneNumber = phoneNumber;
callback(response.verificationID, nil);
}];
}];