From e719cf48feea036d82bfbcecb58ff00a2b2bf39f Mon Sep 17 00:00:00 2001 From: lov3b Date: Tue, 22 Mar 2022 16:07:24 +0100 Subject: [PATCH] Remove sout --- src/schack/Piece.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/schack/Piece.java b/src/schack/Piece.java index 2c37720..3f8ae15 100644 --- a/src/schack/Piece.java +++ b/src/schack/Piece.java @@ -67,7 +67,6 @@ public abstract class Piece extends Component { // Instead of checking index and null, try-catch try { Piece p = pieces[pos.x][pos.y]; - System.out.println(p); // If this piece is the same team as ours, skip if (p.isWhite == this.isWhite) { return true;