Make formatting more consistent.

This commit is contained in:
Nolan Darilek 2022-01-10 10:51:18 -06:00
parent cdc225418e
commit 9066d2b005
1 changed files with 13 additions and 9 deletions

View File

@ -1,14 +1,18 @@
#[cfg(target_os = "android")] #[cfg(target_os = "android")]
use std::collections::HashSet; use std::{
use std::ffi::{CStr, CString}; collections::HashSet,
use std::os::raw::c_void; ffi::{CStr, CString},
use std::sync::{Mutex, RwLock}; os::raw::c_void,
use std::thread; sync::{Mutex, RwLock},
use std::time::{Duration, Instant}; thread,
time::{Duration, Instant},
};
use jni::objects::{GlobalRef, JObject, JString}; use jni::{
use jni::sys::{jfloat, jint, JNI_VERSION_1_6}; objects::{GlobalRef, JObject, JString},
use jni::{JNIEnv, JavaVM}; sys::{jfloat, jint, JNI_VERSION_1_6},
JNIEnv, JavaVM,
};
use lazy_static::lazy_static; use lazy_static::lazy_static;
use log::{error, info}; use log::{error, info};