mirror of
https://github.com/corda/corda.git
synced 2025-02-09 20:31:18 +00:00
add java.util.Properties.propertyNames() method
This commit is contained in:
parent
1daa93d3c4
commit
4dc05844df
@ -48,6 +48,10 @@ public class Properties extends Hashtable {
|
||||
public Object setProperty(String key, String value) {
|
||||
return put(key, value);
|
||||
}
|
||||
|
||||
public Enumeration<?> propertyNames() {
|
||||
return keys();
|
||||
}
|
||||
|
||||
private static class Parser {
|
||||
private StringBuilder key = null;
|
||||
|
Loading…
x
Reference in New Issue
Block a user