aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firebase
diff options
context:
space:
mode:
authorGravatar Xiangtian Dai <xiangtian@google.com>2017-06-20 10:59:58 -0700
committerGravatar GitHub <noreply@github.com>2017-06-20 10:59:58 -0700
commitcf5604218c04aa559e4e975f79c5b9beed9c9b45 (patch)
tree1584b7f5fb6acda7a9b51e850df84fa6f88e2f06 /Firebase
parent45c6e1c523f6ed2fb19150be31f5e22df71396ed (diff)
Removes old `FIREmailPasswordAuthProvider` files. (#90)
* Removes old files that has been removed. The class has been renamed to `FIREmailAuthProvider`. * Removes remaining references to 'bears' from repository.
Diffstat (limited to 'Firebase')
-rw-r--r--Firebase/Auth/Source/AuthProviders/EmailPassword/FIREmailPasswordAuthProvider.h49
-rw-r--r--Firebase/Auth/Source/AuthProviders/EmailPassword/FIREmailPasswordAuthProvider.m35
2 files changed, 0 insertions, 84 deletions
diff --git a/Firebase/Auth/Source/AuthProviders/EmailPassword/FIREmailPasswordAuthProvider.h b/Firebase/Auth/Source/AuthProviders/EmailPassword/FIREmailPasswordAuthProvider.h
deleted file mode 100644
index bf7db21..0000000
--- a/Firebase/Auth/Source/AuthProviders/EmailPassword/FIREmailPasswordAuthProvider.h
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- * Copyright 2017 Google
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#import <Foundation/Foundation.h>
-
-@class FIRAuthCredential;
-
-NS_ASSUME_NONNULL_BEGIN
-
-/**
- @brief A string constant identifying the email & password identity provider.
- */
-extern NSString *const FIREmailPasswordAuthProviderID;
-
-/** @class FIREmailPasswordAuthProvider
- @brief A concrete implementation of @c FIRAuthProvider for Email & Password Sign In.
- */
-@interface FIREmailPasswordAuthProvider : NSObject
-
-/** @fn credentialWithEmail:password:
- @brief Creates an @c FIRAuthCredential for an email & password sign in.
-
- @param email The user's email address.
- @param password The user's password.
- @return A FIRAuthCredential containing the email & password credential.
- */
-+ (FIRAuthCredential *)credentialWithEmail:(NSString *)email password:(NSString *)password;
-
-/** @fn init
- @brief This class is not meant to be initialized.
- */
-- (instancetype)init NS_UNAVAILABLE;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/Firebase/Auth/Source/AuthProviders/EmailPassword/FIREmailPasswordAuthProvider.m b/Firebase/Auth/Source/AuthProviders/EmailPassword/FIREmailPasswordAuthProvider.m
deleted file mode 100644
index 84c3787..0000000
--- a/Firebase/Auth/Source/AuthProviders/EmailPassword/FIREmailPasswordAuthProvider.m
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * Copyright 2017 Google
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#import "FIREmailPasswordAuthProvider.h"
-
-#import "FIREmailPasswordAuthCredential.h"
-
-// FIREmailPasswordAuthProviderID is defined in FIRAuthProvider.m.
-
-@implementation FIREmailPasswordAuthProvider
-
-- (instancetype)init {
- @throw [NSException exceptionWithName:@"Attempt to call unavailable initializer."
- reason:@"This class is not meant to be initialized."
- userInfo:nil];
-}
-
-+ (FIRAuthCredential *)credentialWithEmail:(NSString *)email password:(NSString *)password {
- return [[FIREmailPasswordAuthCredential alloc] initWithEmail:email password:password];
-}
-
-@end