aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firebase
diff options
context:
space:
mode:
authorGravatar Zsika Phillip <protocol86@users.noreply.github.com>2017-09-05 23:16:28 -0700
committerGravatar GitHub <noreply@github.com>2017-09-05 23:16:28 -0700
commit954484c4c44036c9b4e67aa1f81c87345675e289 (patch)
tree8722f7e786004ca0bfeccf3f7cdcb1bdba3752bd /Firebase
parentdafdf26603207af61acc0be39115f57ce5ad959b (diff)
Removes canHandleURL from FIRAuthInternal (#235)
* Removes canHandleURL from FIRAuthInternal Removes canHandleURL from FIRAuth_Internal and makes small modification to FIRPhoneAuthProvider unit test. * Addresses comment
Diffstat (limited to 'Firebase')
-rw-r--r--Firebase/Auth/Source/FIRAuth_Internal.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/Firebase/Auth/Source/FIRAuth_Internal.h b/Firebase/Auth/Source/FIRAuth_Internal.h
index 8f1e315..44a754c 100644
--- a/Firebase/Auth/Source/FIRAuth_Internal.h
+++ b/Firebase/Auth/Source/FIRAuth_Internal.h
@@ -124,18 +124,6 @@ NS_ASSUME_NONNULL_BEGIN
*/
- (BOOL)signOutByForceWithUserID:(NSString *)userID error:(NSError *_Nullable *_Nullable)error;
-/** @fn canHandleURL:
- @brief Whether the specific URL is handled by @c FIRAuth .
- @param url The URL received by the application delegate from any of the openURL method.
- @return Whether or the URL is handled. YES means the URL is for Firebase Auth
- so the caller should ignore the URL from further processing, and NO means the
- the URL is for the app (or another libaray) so the caller should continue handling
- this URL as usual.
- @remarks If swizzling is disabled, URLs received by the application delegate must be forwarded
- to this method for phone number auth to work.
- */
-- (BOOL)canHandleURL:(nonnull NSURL *)url;
-
@end
NS_ASSUME_NONNULL_END