Skip to content

Commit f45d644

Browse files
committed
fmt
1 parent bcd6995 commit f45d644

File tree

1 file changed

+5
-4
lines changed
  • java_runtime/src/classes/java

1 file changed

+5
-4
lines changed

java_runtime/src/classes/java/lang.rs

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
mod array_index_out_of_bounds_exception;
22
mod class;
33
mod class_loader;
4+
mod clone_not_supported_exception;
45
mod cloneable;
56
mod error;
67
mod exception;
@@ -16,7 +17,6 @@ mod no_class_def_found_error;
1617
mod no_such_field_error;
1718
mod no_such_method_error;
1819
mod null_pointer_exception;
19-
mod clone_not_supported_exception;
2020
mod object;
2121
mod runnable;
2222
mod runtime;
@@ -30,12 +30,13 @@ mod throwable;
3030
mod unsupported_operation_exception;
3131

3232
pub use self::{
33-
array_index_out_of_bounds_exception::ArrayIndexOutOfBoundsException, class::Class, class_loader::ClassLoader, cloneable::Cloneable, error::Error,
34-
exception::Exception, illegal_argument_exception::IllegalArgumentException, incompatible_class_change_error::IncompatibleClassChangeError,
33+
array_index_out_of_bounds_exception::ArrayIndexOutOfBoundsException, class::Class, class_loader::ClassLoader,
34+
clone_not_supported_exception::CloneNotSupportedException, cloneable::Cloneable, error::Error, exception::Exception,
35+
illegal_argument_exception::IllegalArgumentException, incompatible_class_change_error::IncompatibleClassChangeError,
3536
index_out_of_bounds_exception::IndexOutOfBoundsException, instantiation_error::InstantiationError, integer::Integer,
3637
interrupted_exception::InterruptedException, linkage_error::LinkageError, math::Math, no_class_def_found_error::NoClassDefFoundError,
3738
no_such_field_error::NoSuchFieldError, no_such_method_error::NoSuchMethodError, null_pointer_exception::NullPointerException, object::Object,
3839
runnable::Runnable, runtime::Runtime, runtime_exception::RuntimeException, security_exception::SecurityException, string::String,
3940
string_buffer::StringBuffer, system::System, thread::Thread, throwable::Throwable,
40-
unsupported_operation_exception::UnsupportedOperationException, clone_not_supported_exception::CloneNotSupportedException,
41+
unsupported_operation_exception::UnsupportedOperationException,
4142
};

0 commit comments

Comments
 (0)