summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Rex <julian.rex@mapbox.com>2019-04-19 16:40:53 -0400
committerJulian Rex <julian.rex@mapbox.com>2019-04-24 11:21:00 -0400
commitf831d3e61152037acfa820fbbbeb11ccb8a56281 (patch)
treed8a28bf8bf87f9af3e9bbc8a78494361fb2d4ed6
parent5c357e1e747fc2138f7ab084369fdc0b6160c404 (diff)
downloadqtlocation-mapboxgl-f831d3e61152037acfa820fbbbeb11ccb8a56281.tar.gz
[ios] Moved property declaration.
-rw-r--r--platform/darwin/src/MGLAccountManager.m1
-rw-r--r--platform/darwin/src/MGLAccountManager_Private.h2
2 files changed, 1 insertions, 2 deletions
diff --git a/platform/darwin/src/MGLAccountManager.m b/platform/darwin/src/MGLAccountManager.m
index 5c3d63f452..4904b13a9b 100644
--- a/platform/darwin/src/MGLAccountManager.m
+++ b/platform/darwin/src/MGLAccountManager.m
@@ -18,7 +18,6 @@ static BOOL _MGLAccountsSDKEnabled;
@property (nonatomic) NSURL *apiBaseURL;
#if TARGET_OS_IPHONE || TARGET_OS_SIMULATOR
-@property (class, nonatomic, readonly) BOOL isAccountsSDKEnabled;
@property (atomic) NSString *skuToken;
@property (atomic) NSDate *skuTokenExpiration;
#endif
diff --git a/platform/darwin/src/MGLAccountManager_Private.h b/platform/darwin/src/MGLAccountManager_Private.h
index 24a8632540..366e3097f3 100644
--- a/platform/darwin/src/MGLAccountManager_Private.h
+++ b/platform/darwin/src/MGLAccountManager_Private.h
@@ -16,7 +16,7 @@ NS_ASSUME_NONNULL_BEGIN
#if TARGET_OS_IPHONE || TARGET_OS_SIMULATOR
/// The current global SKU.
@property (class, atomic, readonly, nullable) NSString *skuToken;
-@property (class, nonatomic) BOOL isAccountsSDKEnabled;
+@property (class, nonatomic, readonly) BOOL isAccountsSDKEnabled;
#endif
@end