Fixed an incorrect null check.

This commit is contained in:
Kristian S. Stangeland 2012-11-21 00:24:19 +01:00
parent 36f867cafa
commit 9482818751

View File

@ -540,7 +540,7 @@ public class AsyncListenerHandler {
return;
}
if (packet != null && packet.getAsyncMarker() == null) {
if (packet != null && packet.getAsyncMarker() != null) {
processPacket(workerID, packet, "onAsyncPacket()");
}
}