From 7418e84b42e2c0d08242fa9e88ab57628238d2ce Mon Sep 17 00:00:00 2001 From: cyril-colin Date: Mon, 14 Oct 2019 07:22:38 +0200 Subject: [PATCH] removed extra semicol --- src/commandSystem/EventQueue.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commandSystem/EventQueue.java b/src/commandSystem/EventQueue.java index 5e24830..e903d45 100644 --- a/src/commandSystem/EventQueue.java +++ b/src/commandSystem/EventQueue.java @@ -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); } -} \ No newline at end of file +}