aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firebase/Auth
diff options
context:
space:
mode:
authorGravatar Zsika Phillip <protocol86@users.noreply.github.com>2018-03-30 14:25:41 -0700
committerGravatar GitHub <noreply@github.com>2018-03-30 14:25:41 -0700
commitc5eb0bbd664fe766b476b2547571bbb730507adf (patch)
tree81d4df582db33087fecbf08d39e99319bf250a94 /Firebase/Auth
parenta17740e9146e4e2431d62964d044287cccc3ee85 (diff)
removes deprecation messages getIDTokenWithComp.. (#1011)
Removes deprecation message for getIDTokenWithCompletion: and getIDTokenForcingRefresh:completion. This methods are not being deprecated.
Diffstat (limited to 'Firebase/Auth')
-rw-r--r--Firebase/Auth/Source/Public/FIRUser.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/Firebase/Auth/Source/Public/FIRUser.h b/Firebase/Auth/Source/Public/FIRUser.h
index 7198eac..dd8362d 100644
--- a/Firebase/Auth/Source/Public/FIRUser.h
+++ b/Firebase/Auth/Source/Public/FIRUser.h
@@ -303,7 +303,7 @@ NS_SWIFT_NAME(User)
@remarks See `FIRAuthErrors` for a list of error codes that are common to all API methods.
*/
- (void)getIDTokenWithCompletion:(nullable FIRAuthTokenCallback)completion
- NS_SWIFT_NAME(getIDToken(completion:)) __attribute__((deprecated));
+ NS_SWIFT_NAME(getIDToken(completion:));
/** @fn getTokenWithCompletion:
@brief Please use `getIDTokenWithCompletion:` instead.
@@ -330,8 +330,7 @@ NS_SWIFT_NAME(User)
@remarks See `FIRAuthErrors` for a list of error codes that are common to all API methods.
*/
- (void)getIDTokenForcingRefresh:(BOOL)forceRefresh
- completion:(nullable FIRAuthTokenCallback)completion
- __attribute__((deprecated));
+ completion:(nullable FIRAuthTokenCallback)completion;
/** @fn getTokenForcingRefresh:completion:
@brief Please use getIDTokenForcingRefresh:completion instead.