forked from I2P_Developers/i2p.i2p
try again to prevent IllegalStateException on Java 5
This commit is contained in:
@ -613,7 +613,9 @@ class EstablishmentManager {
|
||||
// java 5 IllegalStateException here
|
||||
try {
|
||||
iter.remove();
|
||||
} catch (IllegalStateException ise) {}
|
||||
} catch (IllegalStateException ise) {
|
||||
continue;
|
||||
}
|
||||
RemoteHostId to = entry.getKey();
|
||||
List<OutNetMessage> allQueued = entry.getValue();
|
||||
List<OutNetMessage> queued = new ArrayList();
|
||||
|
Reference in New Issue
Block a user