Skip to content

Commit c276e59

Browse files
committed
misc: fmt
1 parent 4c231bf commit c276e59

File tree

1 file changed

+15
-16
lines changed

1 file changed

+15
-16
lines changed

runtime/src/native/mod.rs

Lines changed: 15 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -54,34 +54,34 @@ pub(crate) fn lib_java() -> &'static Library {
5454

5555
pub(crate) mod java {
5656
pub(crate) mod io {
57-
pub(crate) mod FileInputStream;
58-
pub(crate) mod UnixFileSystem;
5957
pub(crate) mod FileDescriptor;
60-
pub(crate) mod FileSystem;
58+
pub(crate) mod FileInputStream;
6159
pub(crate) mod FileOutputStream;
60+
pub(crate) mod FileSystem;
61+
pub(crate) mod UnixFileSystem;
6262
}
6363
pub(crate) mod lang {
6464
pub(crate) mod invoke {
65-
pub(crate) mod MethodHandleNatives;
6665
pub(crate) mod MethodHandle;
66+
pub(crate) mod MethodHandleNatives;
6767
}
6868
pub(crate) mod r#ref {
69+
pub(crate) mod Finalizer;
6970
pub(crate) mod PhantomReference;
7071
pub(crate) mod Reference;
71-
pub(crate) mod Finalizer;
7272
}
7373
pub(crate) mod reflect {
7474
pub(crate) mod Array;
7575
}
76-
pub(crate) mod StringBuilder;
76+
pub(crate) mod Class;
77+
pub(crate) mod ClassLoader;
78+
pub(crate) mod Module;
7779
pub(crate) mod Runtime;
80+
pub(crate) mod String;
81+
pub(crate) mod StringBuilder;
7882
pub(crate) mod StringUTF16;
79-
pub(crate) mod Module;
80-
pub(crate) mod ClassLoader;
81-
pub(crate) mod Throwable;
8283
pub(crate) mod Thread;
83-
pub(crate) mod String;
84-
pub(crate) mod Class;
84+
pub(crate) mod Throwable;
8585
}
8686
pub(crate) mod security {
8787
pub(crate) mod AccessController;
@@ -91,18 +91,18 @@ pub(crate) mod java {
9191
pub(crate) mod jdk {
9292
pub(crate) mod internal {
9393
pub(crate) mod misc {
94-
pub(crate) mod ScopedMemoryAccess;
9594
pub(crate) mod CDS;
96-
pub(crate) mod VM;
97-
pub(crate) mod Unsafe;
95+
pub(crate) mod ScopedMemoryAccess;
9896
pub(crate) mod Signal;
97+
pub(crate) mod Unsafe;
98+
pub(crate) mod VM;
9999
}
100100
pub(crate) mod util {
101101
pub(crate) mod SystemProps;
102102
}
103103
pub(crate) mod loader {
104-
pub(crate) mod NativeLibraries;
105104
pub(crate) mod BootLoader;
105+
pub(crate) mod NativeLibraries;
106106
pub(crate) mod NativeLibrary;
107107
}
108108
pub(crate) mod reflect {
@@ -112,4 +112,3 @@ pub(crate) mod jdk {
112112
}
113113
}
114114
}
115-

0 commit comments

Comments
 (0)