summaryrefslogtreecommitdiff
path: root/platform/android/src/geojson/conversion/feature.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'platform/android/src/geojson/conversion/feature.hpp')
-rw-r--r--platform/android/src/geojson/conversion/feature.hpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/platform/android/src/geojson/conversion/feature.hpp b/platform/android/src/geojson/conversion/feature.hpp
index 031449cd23..d9fc0a0b67 100644
--- a/platform/android/src/geojson/conversion/feature.hpp
+++ b/platform/android/src/geojson/conversion/feature.hpp
@@ -7,23 +7,12 @@
#include <jni/jni.hpp>
#include <vector>
-#include <unordered_map>
namespace mbgl {
namespace android {
namespace conversion {
template <>
-struct Converter<jni::jobject*, std::unordered_map<std::string, mbgl::Value>> {
- Result<jni::jobject*> operator()(jni::JNIEnv& env, const std::unordered_map<std::string, mbgl::Value>& value) const;
-};
-
-template <>
-struct Converter<jni::Object<android::geojson::Feature>, mbgl::Feature> {
- Result<jni::Object<android::geojson::Feature>> operator()(jni::JNIEnv& env, const mbgl::Feature& value) const;
-};
-
-template <>
struct Converter<jni::Array<jni::Object<android::geojson::Feature>>, std::vector<mbgl::Feature>> {
Result<jni::Array<jni::Object<android::geojson::Feature>>> operator()(jni::JNIEnv& env, const std::vector<mbgl::Feature>& value) const;
};