summaryrefslogtreecommitdiff
path: root/platform/ios/src/MGLCategoryLoader.m
diff options
context:
space:
mode:
Diffstat (limited to 'platform/ios/src/MGLCategoryLoader.m')
-rw-r--r--platform/ios/src/MGLCategoryLoader.m24
1 files changed, 0 insertions, 24 deletions
diff --git a/platform/ios/src/MGLCategoryLoader.m b/platform/ios/src/MGLCategoryLoader.m
deleted file mode 100644
index 9b66be73d8..0000000000
--- a/platform/ios/src/MGLCategoryLoader.m
+++ /dev/null
@@ -1,24 +0,0 @@
-#import "MGLCategoryLoader.h"
-
-#import "NSBundle+MGLAdditions.h"
-#import "NSProcessInfo+MGLAdditions.h"
-#import "NSString+MGLAdditions.h"
-
-#import "MGLMapView.h"
-
-@implementation MGLCategoryLoader
-
-+ (void)loadCategories
-{
- // https://github.com/mapbox/mapbox-gl-native/issues/2966
- //
- mgl_linkBundleCategory();
- mgl_linkProcessCategory();
- mgl_linkStringCategory();
-
- // https://github.com/mapbox/mapbox-gl-native/issues/3113
- //
- [MGLMapView description];
-}
-
-@end