Skip to content

Commit 59748bb

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent e0bcae6 commit 59748bb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

platform/android/MapLibreAndroid/src/cpp/snapshotter/map_snapshot.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ jni::Local<jni::Object<MapSnapshot>> MapSnapshot::New(JNIEnv& env,
4040
// Create the Mapsnapshot peers
4141
static auto& javaClass = jni::Class<MapSnapshot>::Singleton(env);
4242
static auto constructor =
43-
javaClass.GetConstructor<jni::jlong, jni::Object<Bitmap>, jni::Array<jni::String>, jni::jboolean, jni::jboolean>(env);
43+
javaClass
44+
.GetConstructor<jni::jlong, jni::Object<Bitmap>, jni::Array<jni::String>, jni::jboolean, jni::jboolean>(
45+
env);
4446
auto nativePeer = std::make_unique<MapSnapshot>(pixelRatio, pointForFn, latLngForFn);
4547
return javaClass.New(env,
4648
constructor,

0 commit comments

Comments
 (0)