removed extra semicol

This commit is contained in:
cyril-colin 2019-10-14 07:22:38 +02:00
parent ed432f890c
commit 7418e84b42

View File

@ -50,7 +50,7 @@ public class EventQueue {
return; return;
switch (request.getDirection()) { switch (request.getDirection()) {
case UP: case UP:
if (!upQueue.contains(request.getIncomingCallFloor())); if (!upQueue.contains(request.getIncomingCallFloor()))
appSort(upQueue, request.getIncomingCallFloor(), false); appSort(upQueue, request.getIncomingCallFloor(), false);
break; break;
case DOWN: case DOWN:
@ -157,4 +157,4 @@ public class EventQueue {
downQueue.removeAll(downQueue); downQueue.removeAll(downQueue);
upQueue.removeAll(upQueue); upQueue.removeAll(upQueue);
} }
} }