summaryrefslogtreecommitdiff
path: root/platform/android/src
diff options
context:
space:
mode:
Diffstat (limited to 'platform/android/src')
-rw-r--r--platform/android/src/style/layers/unknown_layer.cpp2
-rw-r--r--platform/android/src/style/sources/unknown_source.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/platform/android/src/style/layers/unknown_layer.cpp b/platform/android/src/style/layers/unknown_layer.cpp
index 9ec963a41b..8ffda82bfc 100644
--- a/platform/android/src/style/layers/unknown_layer.cpp
+++ b/platform/android/src/style/layers/unknown_layer.cpp
@@ -6,7 +6,7 @@ namespace {
// Dummy initializer (We don't support initializing this from the JVM)
std::unique_ptr<mbgl::android::UnknownLayer> init(jni::JNIEnv&) {
- throw new std::runtime_error("UnknownLayer should not be initialized from the JVM");
+ throw std::runtime_error("UnknownLayer should not be initialized from the JVM");
}
} // namespace
diff --git a/platform/android/src/style/sources/unknown_source.cpp b/platform/android/src/style/sources/unknown_source.cpp
index c1b1cc8c02..86736597c3 100644
--- a/platform/android/src/style/sources/unknown_source.cpp
+++ b/platform/android/src/style/sources/unknown_source.cpp
@@ -4,7 +4,7 @@ namespace {
// Dummy initializer (We don't support initializing this from the JVM)
std::unique_ptr<mbgl::android::UnknownSource> init(jni::JNIEnv&) {
- throw new std::runtime_error("UnknownSource should not be initialized from the JVM");
+ throw std::runtime_error("UnknownSource should not be initialized from the JVM");
}
} // namespace