diff --git a/com/laboon/Cell.java b/com/laboon/Cell.java index 1e0eab8..ff932e2 100644 --- a/com/laboon/Cell.java +++ b/com/laboon/Cell.java @@ -67,7 +67,7 @@ public State iterate(int numNeighbors) { * @return Character representation of the cell's state */ - public char getStateRep() { +public char getStateRep() { char toReturn = ' '; if (_state == State.DEAD) { toReturn = '.'; @@ -77,7 +77,7 @@ public char getStateRep() { toReturn = ' '; } return toReturn; - } +} /** * Constructor for a new cell.