Skip to content

Commit 0dc5625

Browse files
committed
format fix
1 parent cf60eee commit 0dc5625

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

src/jni/refs.cpp

+10-8
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ jmethodID J_Object_toString;
100100

101101
jclass J_DuckDBTime;
102102

103-
jclass J_ProfilerPrintFormat;
103+
jclass J_ProfilerPrintFormat;
104104
jobject J_ProfilerPrintFormat_QUERY_TREE;
105105
jobject J_ProfilerPrintFormat_JSON;
106106
jobject J_ProfilerPrintFormat_QUERY_TREE_OPTIMIZER;
@@ -263,15 +263,17 @@ void create_refs(JNIEnv *env) {
263263

264264
J_ProfilerPrintFormat = make_class_ref(env, "org/duckdb/ProfilerPrintFormat");
265265
J_ProfilerPrintFormat_QUERY_TREE =
266-
make_static_object_field_ref(env, J_ProfilerPrintFormat, "QUERY_TREE", "Lorg/duckdb/ProfilerPrintFormat;");
267-
J_ProfilerPrintFormat_JSON = make_static_object_field_ref(env, J_ProfilerPrintFormat, "JSON", "Lorg/duckdb/ProfilerPrintFormat;");
268-
J_ProfilerPrintFormat_QUERY_TREE_OPTIMIZER =
269-
make_static_object_field_ref(env, J_ProfilerPrintFormat, "QUERY_TREE_OPTIMIZER", "Lorg/duckdb/ProfilerPrintFormat;");
266+
make_static_object_field_ref(env, J_ProfilerPrintFormat, "QUERY_TREE", "Lorg/duckdb/ProfilerPrintFormat;");
267+
J_ProfilerPrintFormat_JSON =
268+
make_static_object_field_ref(env, J_ProfilerPrintFormat, "JSON", "Lorg/duckdb/ProfilerPrintFormat;");
269+
J_ProfilerPrintFormat_QUERY_TREE_OPTIMIZER = make_static_object_field_ref(
270+
env, J_ProfilerPrintFormat, "QUERY_TREE_OPTIMIZER", "Lorg/duckdb/ProfilerPrintFormat;");
270271
J_ProfilerPrintFormat_NO_OUTPUT =
271-
make_static_object_field_ref(env, J_ProfilerPrintFormat, "NO_OUTPUT", "Lorg/duckdb/ProfilerPrintFormat;");
272-
J_ProfilerPrintFormat_HTML = make_static_object_field_ref(env, J_ProfilerPrintFormat, "HTML", "Lorg/duckdb/ProfilerPrintFormat;");
272+
make_static_object_field_ref(env, J_ProfilerPrintFormat, "NO_OUTPUT", "Lorg/duckdb/ProfilerPrintFormat;");
273+
J_ProfilerPrintFormat_HTML =
274+
make_static_object_field_ref(env, J_ProfilerPrintFormat, "HTML", "Lorg/duckdb/ProfilerPrintFormat;");
273275
J_ProfilerPrintFormat_GRAPHVIZ =
274-
make_static_object_field_ref(env, J_ProfilerPrintFormat, "GRAPHVIZ", "Lorg/duckdb/ProfilerPrintFormat;");
276+
make_static_object_field_ref(env, J_ProfilerPrintFormat, "GRAPHVIZ", "Lorg/duckdb/ProfilerPrintFormat;");
275277
}
276278

277279
void delete_global_refs(JNIEnv *env) noexcept {

0 commit comments

Comments
 (0)