forked from I2P_Developers/i2p.i2p
minor speedup
This commit is contained in:
@ -436,8 +436,9 @@ public class I2PAppContext {
|
|||||||
*/
|
*/
|
||||||
public String getProperty(String propName) {
|
public String getProperty(String propName) {
|
||||||
if (_overrideProps != null) {
|
if (_overrideProps != null) {
|
||||||
if (_overrideProps.containsKey(propName))
|
String rv = _overrideProps.getProperty(propName);
|
||||||
return _overrideProps.getProperty(propName);
|
if (rv != null)
|
||||||
|
return rv;
|
||||||
}
|
}
|
||||||
return System.getProperty(propName);
|
return System.getProperty(propName);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user