mirror of
https://github.com/i2p/i2p.i2p.git
synced 2024-12-06 19:27:00 +01:00
minor speedup
This commit is contained in:
@@ -436,8 +436,9 @@ public class I2PAppContext {
|
||||
*/
|
||||
public String getProperty(String propName) {
|
||||
if (_overrideProps != null) {
|
||||
if (_overrideProps.containsKey(propName))
|
||||
return _overrideProps.getProperty(propName);
|
||||
String rv = _overrideProps.getProperty(propName);
|
||||
if (rv != null)
|
||||
return rv;
|
||||
}
|
||||
return System.getProperty(propName);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user