summaryrefslogtreecommitdiff
path: root/platform/darwin/src/MGLSource.mm
diff options
context:
space:
mode:
authorMinh Nguyễn <mxn@1ec5.org>2016-08-16 02:10:56 -0700
committerGitHub <noreply@github.com>2016-08-16 02:10:56 -0700
commitdcd9e1016cd20f107c4e34be62c631a1f4189af1 (patch)
tree2f313708a6b049742d15dde5af67fcde4ab038af /platform/darwin/src/MGLSource.mm
parent18176605f65ce90c973e0b61a1a2b563471b0ba5 (diff)
downloadqtlocation-mapboxgl-dcd9e1016cd20f107c4e34be62c631a1f4189af1.tar.gz
[ios, macos] Removed MGLSource.sourceType (#6028)
Fixes #6027.
Diffstat (limited to 'platform/darwin/src/MGLSource.mm')
-rw-r--r--platform/darwin/src/MGLSource.mm3
1 files changed, 1 insertions, 2 deletions
diff --git a/platform/darwin/src/MGLSource.mm b/platform/darwin/src/MGLSource.mm
index c80fbe914c..2b73074b09 100644
--- a/platform/darwin/src/MGLSource.mm
+++ b/platform/darwin/src/MGLSource.mm
@@ -4,10 +4,9 @@
@implementation MGLSource
-- (instancetype)initWithSourceIdentifier:(NSString *)sourceIdentifier sourceType:(NSString *)sourceType {
+- (instancetype)initWithSourceIdentifier:(NSString *)sourceIdentifier {
if (self = [super init]) {
_sourceIdentifier = sourceIdentifier;
- _sourceType = sourceType;
}
return self;
}