[ios][config] Fix incorrectly named implementation

This commit is contained in:
Chris Bianca 2017-08-17 11:48:53 +01:00
parent 0737f53dea
commit cf2431b9e2
1 changed files with 1 additions and 3 deletions

View File

@ -34,8 +34,6 @@ NSDictionary *convertFIRRemoteConfigValueToNSDictionary(FIRRemoteConfigValue *va
return @{@"stringValue": value.stringValue ?: [NSNull null], @"numberValue": value.numberValue ?: [NSNull null], @"dataValue": value.dataValue ? [value.dataValue base64EncodedStringWithOptions:0] : [NSNull null], @"boolValue": @(value.boolValue), @"source": convertFIRRemoteConfigSourceToNSString(value.source)};
}
@interface RNFirebaseRemoteConfig ()
@property(nonatomic, readwrite, weak) FIRRemoteConfig *remoteConfig;
@end
@ -137,6 +135,6 @@ RCT_EXPORT_METHOD(setDefaultsFromResource:
@end
#else
@implementation RNFirebaseConfig
@implementation RNFirebaseRemoteConfig
@end
#endif