Skip to content

Commit 4a3a2fd

Browse files
authored
Add java.util.Locale compatibility runtime (#171)
* add java util locale * address locale review feedback
1 parent 1a39271 commit 4a3a2fd

5 files changed

Lines changed: 1186 additions & 3 deletions

File tree

java_runtime/src/classes/java/util.rs

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ mod hashtable_key_set;
3232
mod hashtable_values;
3333
mod iterator;
3434
mod list;
35+
mod locale;
3536
mod map;
3637
mod map_entry;
3738
mod no_such_element_exception;
@@ -55,7 +56,8 @@ pub use self::{
5556
hash_map_hash_iterator::HashMapHashIterator, hash_map_key_iterator::HashMapKeyIterator, hash_map_key_set::HashMapKeySet,
5657
hash_map_value_iterator::HashMapValueIterator, hash_map_values::HashMapValues, hash_set::HashSet, hashtable::Hashtable,
5758
hashtable_entry::HashtableEntry, hashtable_entry_set::HashtableEntrySet, hashtable_enumerator::HashtableEnumerator,
58-
hashtable_key_set::HashtableKeySet, hashtable_values::HashtableValues, iterator::Iterator, list::List, map::Map, map_entry::MapEntry,
59-
no_such_element_exception::NoSuchElementException, properties::Properties, random::Random, set::Set, simple_time_zone::SimpleTimeZone,
60-
stack::Stack, time_zone::TimeZone, timer::Timer, timer_task::TimerTask, timer_thread::TimerThread, vector::Vector, vector_itr::VectorItr,
59+
hashtable_key_set::HashtableKeySet, hashtable_values::HashtableValues, iterator::Iterator, list::List, locale::Locale, map::Map,
60+
map_entry::MapEntry, no_such_element_exception::NoSuchElementException, properties::Properties, random::Random, set::Set,
61+
simple_time_zone::SimpleTimeZone, stack::Stack, time_zone::TimeZone, timer::Timer, timer_task::TimerTask, timer_thread::TimerThread,
62+
vector::Vector, vector_itr::VectorItr,
6163
};

0 commit comments

Comments
 (0)