Add LimboStepResult.java constructor

This commit is contained in:
김선우 2025-01-19 17:07:59 +09:00
parent b80438226b
commit f80823a297
2 changed files with 10 additions and 3 deletions

View file

@ -133,13 +133,12 @@ fn to_limbo_step_result<'local>(
"(I[Ljava/lang/Object;)V",
&ctor_args,
)
.unwrap_or_else(|_| JObject::null())
} else {
env.new_object(
"org/github/tursodatabase/core/LimboStepResult",
"(I[Ljava/lang/Object;)V",
"(I)V",
&ctor_args,
)
.unwrap_or_else(|_| JObject::null())
}
.unwrap_or_else(|_| JObject::null())
}