Skip to content

Commit

Permalink
rust: rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
adjabaev committed Aug 21, 2024
1 parent 3eabd6c commit 587c810
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bindings/java/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ pub extern "system" fn Java_com_dioxuslabs_taffy_TaffyTree_nvParent<'local>(
mut env: JNIEnv<'local>,
_class: JClass<'local>,
pointer: jlong,
child_id: jlong
child_id: jlong,
) -> jlong {
unsafe {
let raw_ptr: *mut TaffyTree<()> = pointer as *mut TaffyTree<()>;
Expand Down Expand Up @@ -378,7 +378,7 @@ pub extern "system" fn Java_com_dioxuslabs_taffy_TaffyTree_nvPrintTree<'local>(
mut env: JNIEnv<'local>,
_class: JClass<'local>,
pointer: jlong,
node: jlong
node: jlong,
) {
unsafe {
let raw_ptr: *mut TaffyTree<()> = pointer as *mut TaffyTree<()>;
Expand Down

0 comments on commit 587c810

Please sign in to comment.