Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions com/laboon/Cell.java
Original file line number Diff line number Diff line change
Expand Up @@ -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 = '.';
Expand All @@ -77,7 +77,7 @@ public char getStateRep() {
toReturn = ' ';
}
return toReturn;
}
}

/**
* Constructor for a new cell.
Expand Down