summaryrefslogtreecommitdiff
path: root/platform/osx/sdk/NSBundle+MGLAdditions.m
diff options
context:
space:
mode:
Diffstat (limited to 'platform/osx/sdk/NSBundle+MGLAdditions.m')
-rw-r--r--platform/osx/sdk/NSBundle+MGLAdditions.m22
1 files changed, 0 insertions, 22 deletions
diff --git a/platform/osx/sdk/NSBundle+MGLAdditions.m b/platform/osx/sdk/NSBundle+MGLAdditions.m
deleted file mode 100644
index a53802c343..0000000000
--- a/platform/osx/sdk/NSBundle+MGLAdditions.m
+++ /dev/null
@@ -1,22 +0,0 @@
-#import "NSBundle+MGLAdditions.h"
-
-#import "MGLAccountManager.h"
-
-void mgl_linkBundleCategory() {}
-
-@implementation NSBundle (MGLAdditions)
-
-+ (instancetype)mgl_resourceBundle {
- return [self bundleWithPath:[self mgl_resourceBundlePath]];
-}
-
-+ (NSString *)mgl_resourceBundlePath {
- NSString *resourceBundlePath = [[self bundleForClass:[MGLAccountManager class]]
- pathForResource:@"Mapbox" ofType:@"bundle"];
- if (!resourceBundlePath) {
- resourceBundlePath = [[self mainBundle] bundlePath];
- }
- return resourceBundlePath;
-}
-
-@end