| 1234567891011121314151617181920212223 |
- #import "BTConfiguration.h"
- @implementation BTConfiguration
- - (instancetype)init {
- @throw [[NSException alloc] initWithName:@"Invalid initializer" reason:@"Use designated initializer" userInfo:nil];
- }
- - (instancetype)initWithJSON:(BTJSON *)json {
- if (self = [super init]) {
- _json = json;
- }
- return self;
- }
- + (BOOL)isBetaEnabledPaymentOption:(NSString*)__unused paymentOption {
- return false;
- }
- + (void)setBetaPaymentOption:(NSString*) __unused paymentOption isEnabled:(BOOL) __unused isEnabled { /* NO OP */ }
- @end
|