summaryrefslogtreecommitdiff
path: root/platform/darwin/src/MGLAccountManager_Private.h
diff options
context:
space:
mode:
Diffstat (limited to 'platform/darwin/src/MGLAccountManager_Private.h')
-rw-r--r--platform/darwin/src/MGLAccountManager_Private.h13
1 files changed, 2 insertions, 11 deletions
diff --git a/platform/darwin/src/MGLAccountManager_Private.h b/platform/darwin/src/MGLAccountManager_Private.h
index 3fd45f1ae8..4644635940 100644
--- a/platform/darwin/src/MGLAccountManager_Private.h
+++ b/platform/darwin/src/MGLAccountManager_Private.h
@@ -1,23 +1,14 @@
#import "MGLAccountManager.h"
-NS_ASSUME_NONNULL_BEGIN
-
@interface MGLAccountManager (Private)
/// Returns the shared instance of the `MGLAccountManager` class.
@property (class, nonatomic, readonly) MGLAccountManager *sharedManager;
/// The current global access token.
-@property (atomic, nullable) NSString *accessToken;
+@property (atomic) NSString *accessToken;
/// The API base URL that is used to access Mapbox resources. The default base URL is `https://api.mapbox.com`. If `nil`, the Mapbox default base API URL is in use.
-@property (atomic, readwrite, nullable) NSURL *apiBaseURL;
-
-#if TARGET_OS_IPHONE || TARGET_OS_SIMULATOR
-/// The current global SKU.
-@property (class, atomic, readonly) NSString *skuToken;
-#endif
+@property (atomic, readwrite) NSURL *apiBaseURL;
@end
-
-NS_ASSUME_NONNULL_END