File tree Expand file tree Collapse file tree 4 files changed +2
-18
lines changed Expand file tree Collapse file tree 4 files changed +2
-18
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,6 @@ NS_ASSUME_NONNULL_BEGIN
23
23
/* * @class FIRTwitterAuthCredential
24
24
@brief Internal implementation of FIRAuthCredential for Twitter credentials.
25
25
*/
26
- DEPRECATED_MSG_ATTRIBUTE (" Please use FIROAuthCredential instead of FIRTwitterAuthCredential." )
27
26
@interface FIRTwitterAuthCredential : FIRAuthCredential <NSSecureCoding >
28
27
29
28
/* * @property token
Original file line number Diff line number Diff line change 22
22
23
23
NS_ASSUME_NONNULL_BEGIN
24
24
25
- #pragma clang diagnostic push
26
- #pragma clang diagnostic ignored "-Wdeprecated-implementations"
27
-
28
25
@interface FIRTwitterAuthCredential ()
29
26
30
27
- (nullable instancetype )initWithProvider : (NSString *)provider NS_UNAVAILABLE;
@@ -73,6 +70,4 @@ - (void)encodeWithCoder:(NSCoder *)aCoder {
73
70
74
71
@end
75
72
76
- #pragma clang diagnostic pop
77
-
78
73
NS_ASSUME_NONNULL_END
Original file line number Diff line number Diff line change 23
23
24
24
NS_ASSUME_NONNULL_BEGIN
25
25
26
- #pragma clang diagnostic push
27
- #pragma clang diagnostic ignored "-Wdeprecated-implementations"
28
-
29
26
@implementation FIRTwitterAuthProvider
30
27
31
28
- (instancetype )init {
@@ -40,6 +37,4 @@ + (FIRAuthCredential *)credentialWithToken:(NSString *)token secret:(NSString *)
40
37
41
38
@end
42
39
43
- #pragma clang diagnostic pop
44
-
45
40
NS_ASSUME_NONNULL_END
Original file line number Diff line number Diff line change @@ -23,20 +23,15 @@ NS_ASSUME_NONNULL_BEGIN
23
23
/* *
24
24
@brief A string constant identifying the Twitter identity provider.
25
25
*/
26
- extern NSString *const FIRTwitterAuthProviderID NS_SWIFT_NAME (TwitterAuthProviderID)
27
- DEPRECATED_MSG_ATTRIBUTE(" Please use \" twitter.com\" instead." );
28
-
26
+ extern NSString *const FIRTwitterAuthProviderID NS_SWIFT_NAME (TwitterAuthProviderID);
29
27
/* *
30
28
@brief A string constant identifying the Twitter sign-in method.
31
29
*/
32
- extern NSString *const _Nonnull FIRTwitterAuthSignInMethod NS_SWIFT_NAME (TwitterAuthSignInMethod)
33
- DEPRECATED_MSG_ATTRIBUTE(" Please use \" twitter.com\" instead." );
34
-
30
+ extern NSString *const _Nonnull FIRTwitterAuthSignInMethod NS_SWIFT_NAME (TwitterAuthSignInMethod);
35
31
36
32
/* * @class FIRTwitterAuthProvider
37
33
@brief Utility class for constructing Twitter credentials.
38
34
*/
39
- DEPRECATED_MSG_ATTRIBUTE (" Please use FIROAuthProvider instead of FIRTwitterAuthProvider." )
40
35
NS_SWIFT_NAME (TwitterAuthProvider)
41
36
@interface FIRTwitterAuthProvider : NSObject
42
37
You can’t perform that action at this time.
0 commit comments