mirror of
https://github.com/corda/corda.git
synced 2025-06-14 05:08:18 +00:00
implement ResourceBundle.getKeys
This commit is contained in:
@ -23,4 +23,8 @@ public class PropertyResourceBundle extends ResourceBundle {
|
||||
public Object handleGetObject(String key) {
|
||||
return map.get(key);
|
||||
}
|
||||
|
||||
public Enumeration<String> getKeys() {
|
||||
return map.keys();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user