forked from I2P_Developers/i2p.i2p
Boolean.valueOf(x).booleanValue() -> Boolean.parseBoolean(x)
This commit is contained in:
@@ -764,7 +764,7 @@ class ConnectionOptions extends I2PSocketOptionsImpl {
|
||||
if (opts == null) return defaultVal;
|
||||
String val = opts.getProperty(name);
|
||||
if (val == null) return defaultVal;
|
||||
return Boolean.valueOf(val).booleanValue();
|
||||
return Boolean.parseBoolean(val);
|
||||
}
|
||||
|
||||
/****
|
||||
|
Reference in New Issue
Block a user