Fixing check-in error

This commit is contained in:
Jonathan Carter
2015-11-23 17:43:19 -08:00
parent e4dc02f47a
commit c254603257

View File

@@ -27,13 +27,13 @@ static NSString * const PendingUpdateRollbackTimeoutKey = @"rollbackTimeout";
+ (NSURL *)bundleURL
{
return [self bundleURLForResourceName:@"main"];
return [self bundleURLForResource:@"main"];
}
+ (NSURL *)bundleURLForResource:(NSString *)resourceName
{
return [self bundleURLForResourceName:resourceName
withExtension:@"jsbundle"];
return [self bundleURLForResource:resourceName
withExtension:@"jsbundle"];
}
+ (NSURL *)bundleURLForResource:(NSString *)resourceName
@@ -362,4 +362,4 @@ RCT_EXPORT_METHOD(setUsingTestFolder:(BOOL)shouldUseTestFolder)
usingTestFolder = shouldUseTestFolder;
}
@end
@end