forked from I2P_Developers/i2p.i2p
* DatabaseLookupmessage:
- Add support for requesting an encrypted reply
* NetDB:
- Add support for encrypted DatabaseSearchReplyMessage and DatabaseStoreMessage
in response to a DatabaseLookupMessage
* PRNG: Cleanups using Collections.singletonMap()
* Router utils: New RemovableSingletonSet
* TransientSessionKeyManager:
- Support variable expiration for inbound tag sets
- Several efficiency improvements
* VersionComparator: Add static method, use most places
This commit is contained in:
@@ -144,7 +144,7 @@ public class ConfigServiceHandler extends FormHandler {
|
||||
if (ctx.hasWrapper() && _wrapperListener == null &&
|
||||
!SystemVersion.isWindows()) {
|
||||
String wv = System.getProperty("wrapper.version");
|
||||
if (wv != null && (new VersionComparator()).compare(wv, LISTENER_AVAILABLE) >= 0) {
|
||||
if (wv != null && VersionComparator.comp(wv, LISTENER_AVAILABLE) >= 0) {
|
||||
try {
|
||||
_wrapperListener = new WrapperListener(ctx);
|
||||
} catch (Throwable t) {}
|
||||
|
||||
Reference in New Issue
Block a user