mirror of
https://github.com/corda/corda.git
synced 2025-01-22 12:28:11 +00:00
Properties.setProperty should return an Object
This commit is contained in:
parent
d0f8889e27
commit
6fa25f992c
@ -45,8 +45,8 @@ public class Properties extends Hashtable {
|
|||||||
return value;
|
return value;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setProperty(String key, String value) {
|
public Object setProperty(String key, String value) {
|
||||||
put(key, value);
|
return put(key, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static class Parser {
|
private static class Parser {
|
||||||
|
Loading…
Reference in New Issue
Block a user