I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 08fad387 authored by zzz's avatar zzz
Browse files

minor speedup

parent ba8b2df4
No related branches found
No related tags found
No related merge requests found
...@@ -436,8 +436,9 @@ public class I2PAppContext { ...@@ -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);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment