Skip to content

Commit

Permalink
Fix: clippyに引っかかっていたのを修正b
Browse files Browse the repository at this point in the history
  • Loading branch information
sevenc-nanashi committed Aug 3, 2023
1 parent 7a1a4c6 commit 2638950
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/voicevox_core_java_api/src/user_dict.rs
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@ pub extern "system" fn Java_jp_Hiroshiba_VoicevoxCore_UserDict_rsImportDict<'loc

{
let mut internal = internal.lock().unwrap();
let mut other_dict = other_dict.lock().unwrap();
internal.import(&mut other_dict)?;
let other_dict = other_dict.lock().unwrap();
internal.import(&other_dict)?;
}

Ok(())
Expand Down

0 comments on commit 2638950

Please sign in to comment.