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