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

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

less code inside synch block

parent cad3c46e
No related branches found
No related tags found
No related merge requests found
......@@ -293,14 +293,14 @@ public class OutboundMessageRegistry {
for (MessageSelector sel : removing) {
OutNetMessage msg = null;
List<OutNetMessage> msgs = null;
Object o;
synchronized (_selectorToMessage) {
Object o = _selectorToMessage.remove(sel);
if (o instanceof OutNetMessage) {
msg = (OutNetMessage)o;
} else if (o instanceof List) {
//msgs = new ArrayList((List)o);
msgs = (List<OutNetMessage>)o;
}
o = _selectorToMessage.remove(sel);
}
if (o instanceof OutNetMessage) {
msg = (OutNetMessage)o;
} else if (o instanceof List) {
msgs = (List<OutNetMessage>)o;
}
if (msg != null) {
_activeMessages.remove(msg);
......
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