summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMinh Nguyễn <mxn@1ec5.org>2015-05-17 00:11:45 -0700
committerJohn Firebaugh <john.firebaugh@gmail.com>2015-05-18 11:55:54 -0700
commit245823e47444ee52f26fdfadf49afc5959567f53 (patch)
tree55b3066a744cde0b8d38ede81cd203ff04c8cf75 /include
parent2c7d0567fa7a2b342b16a5ecea5290aee32aaa77 (diff)
downloadqtlocation-mapboxgl-245823e47444ee52f26fdfadf49afc5959567f53.tar.gz
Removed “private” header
Instead of exposing these methods in a private header that winds up triggering warnings publicly, just redeclare the methods in a category. Since this is a test app, we’ll catch any issues that arise from refactoring simply by testing. Fixes #1579.
Diffstat (limited to 'include')
-rw-r--r--include/mbgl/ios/private/MGLMapView_Private.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/include/mbgl/ios/private/MGLMapView_Private.h b/include/mbgl/ios/private/MGLMapView_Private.h
deleted file mode 100644
index 18c07ef1bb..0000000000
--- a/include/mbgl/ios/private/MGLMapView_Private.h
+++ /dev/null
@@ -1,14 +0,0 @@
-#import <UIKit/UIKit.h>
-
-@interface MGLMapView ()
-
-#pragma mark - Debugging
-
-/** Triggers another render pass even when it is not necessary. */
-- (void)invalidate;
-
-/** Returns whether the map view is currently loading or processing any assets required to render the map */
-- (BOOL)isFullyLoaded;
-
-@end
-