removed extra semicol
This commit is contained in:
parent
ed432f890c
commit
7418e84b42
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user