From 117a747ce4be3baa2fd1288631a6e94d793bc96e Mon Sep 17 00:00:00 2001 From: Geoffrey Goh Date: Fri, 5 Feb 2016 17:11:18 -0800 Subject: [PATCH] pragma mark --- CodePush.m | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/CodePush.m b/CodePush.m index 121b052..db086f1 100644 --- a/CodePush.m +++ b/CodePush.m @@ -15,10 +15,6 @@ RCT_EXPORT_MODULE() #pragma mark - Private constants -static BOOL needToReportRollback = NO; -static BOOL isRunningBinaryVersion = NO; -static BOOL testConfigurationFlag = NO; - // These constants represent valid deployment statuses static NSString *const DeploymentFailed = @"DeploymentFailed"; static NSString *const DeploymentSucceeded = @"DeploymentSucceeded"; @@ -38,6 +34,12 @@ static NSString *const BinaryBundleDateKey = @"binaryDate"; static NSString *const PackageHashKey = @"packageHash"; static NSString *const PackageIsPendingKey = @"isPending"; +#pragma mark - Static variables + +static BOOL needToReportRollback = NO; +static BOOL isRunningBinaryVersion = NO; +static BOOL testConfigurationFlag = NO; + // These values are used to save the bundleURL and extension for the JS bundle // in the binary. static NSString *bundleResourceExtension = @"jsbundle";