From 7c7f6d9b267bb532217f5c158e2a133c171a02a6 Mon Sep 17 00:00:00 2001 From: FattyHope Date: Tue, 17 Oct 2023 12:56:40 +1000 Subject: [PATCH] Removed commented-out line of code --- .../com/csse3200/game/areas/ForestGameArea.java | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/source/core/src/main/com/csse3200/game/areas/ForestGameArea.java b/source/core/src/main/com/csse3200/game/areas/ForestGameArea.java index 35cb492b..648f1245 100644 --- a/source/core/src/main/com/csse3200/game/areas/ForestGameArea.java +++ b/source/core/src/main/com/csse3200/game/areas/ForestGameArea.java @@ -217,19 +217,6 @@ public ForestGameArea() { super(); } - /** - * Add this method to start the wave spawning timer when the game starts. - */ -// private void startWaveTimer() { -// waveTimer = new Timer(); -// waveTimer.scheduleAtFixedRate(new TimerTask() { -// @Override -// public void run() { -// spawnWave(); -// } -// }, 0, 10000); // 10000 milliseconds = 10 seconds -// } - /** * Add this method to stop the wave timer when the game ends or as needed. */