try again to prevent IllegalStateException on Java 5

This commit is contained in:
zzz
2013-01-12 18:17:31 +00:00
parent c43a73e756
commit 083dffe8ed

View File

@ -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();