diff --git a/src/backend/Simulator.java b/src/backend/Simulator.java index f8e45bd..d115462 100644 --- a/src/backend/Simulator.java +++ b/src/backend/Simulator.java @@ -226,19 +226,6 @@ public class Simulator extends Thread { int currentCellValue = getCell(x, y); // set cell value to !currentCellValue } - - public void countAround(int x, int y) { - //enableLogs - //getCell - //if loopingBorder TRUE, border count as living. - if (loopingBorder == true){ - - } - else { - - } - } - /** * @@ -302,7 +289,7 @@ public class Simulator extends Thread { public boolean isLoopingBorder() { //TODO : complete method with proper return - return false; + return loopingBorder; } public void toggleLoopingBorder() {