Skip to content

Commit

Permalink
removed testing println()
Browse files Browse the repository at this point in the history
  • Loading branch information
MMosley502 committed Apr 28, 2023
1 parent 25d2585 commit 52344ea
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ public ShortTruthTableBoard(int width, int height, ShortTruthTableStatement[] st
*/
@Override
public void setCell(int x, int y, Element e, MouseEvent m) {
System.out.println("Setting Cell");
if (e != null && y * dimension.width + x >= puzzleElements.size() || x >= dimension.width ||
y >= dimension.height || x < 0 || y < 0) {
return;
Expand Down

0 comments on commit 52344ea

Please sign in to comment.