mirror of
https://github.com/corda/corda.git
synced 2025-06-14 13:18:18 +00:00
CP: Properties.stringPropertyNames()
This commit is contained in:
@ -58,6 +58,10 @@ public class Properties extends Hashtable {
|
|||||||
return keys();
|
return keys();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Set<String> stringPropertyNames() {
|
||||||
|
return new HashSet(keySet());
|
||||||
|
}
|
||||||
|
|
||||||
private abstract static class Parser {
|
private abstract static class Parser {
|
||||||
private StringBuilder key = null;
|
private StringBuilder key = null;
|
||||||
private StringBuilder value = null;
|
private StringBuilder value = null;
|
||||||
|
Reference in New Issue
Block a user