diff --git a/SignalServiceKit/src/Account/TSAccountManager.h b/SignalServiceKit/src/Account/TSAccountManager.h index 1f0baf7b5..6cced2d2c 100644 --- a/SignalServiceKit/src/Account/TSAccountManager.h +++ b/SignalServiceKit/src/Account/TSAccountManager.h @@ -27,12 +27,7 @@ typedef NS_ENUM(NSUInteger, OWSRegistrationState) { @interface TSAccountManager : NSObject -// This property is exposed for testing purposes only. -#ifdef DEBUG @property (nonatomic, nullable) NSString *phoneNumberAwaitingVerification; -#endif - -- (void)setPhoneNumberAwaitingVerification:(NSString *_Nullable)phoneNumberAwaitingVerification; #pragma mark - Initializers diff --git a/SignalServiceKit/src/Account/TSAccountManager.m b/SignalServiceKit/src/Account/TSAccountManager.m index 5e2d18a82..976de737e 100644 --- a/SignalServiceKit/src/Account/TSAccountManager.m +++ b/SignalServiceKit/src/Account/TSAccountManager.m @@ -46,11 +46,6 @@ NSString *const TSAccountManager_NeedsAccountAttributesUpdateKey = @"TSAccountMa @property (atomic, readonly) BOOL isRegistered; -// This property is exposed publicly for testing purposes only. -#ifndef DEBUG -@property (nonatomic, nullable) NSString *phoneNumberAwaitingVerification; -#endif - @property (nonatomic, nullable) NSString *cachedLocalNumber; @property (nonatomic, readonly) YapDatabaseConnection *dbConnection;