From 14280680c09793d8e5b473647d5c348056c96a70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EC=84=A0=EC=9A=B0?= Date: Wed, 12 Feb 2025 10:36:43 +0900 Subject: [PATCH] Apply rust lint --- bindings/java/rs_src/limbo_statement.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/bindings/java/rs_src/limbo_statement.rs b/bindings/java/rs_src/limbo_statement.rs index f847a39d4..6430f2f90 100644 --- a/bindings/java/rs_src/limbo_statement.rs +++ b/bindings/java/rs_src/limbo_statement.rs @@ -299,11 +299,7 @@ fn to_limbo_step_result<'local>( &ctor_args, ) } else { - env.new_object( - "tech/turso/core/LimboStepResult", - "(I)V", - &ctor_args, - ) + env.new_object("tech/turso/core/LimboStepResult", "(I)V", &ctor_args) } .unwrap_or_else(|_| JObject::null()) }