diff game/Piece.java @ 43:9664bbb9d613

Cleanups.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 22 Feb 2011 06:01:14 +0200
parents 951a4d669af0
children 79185dababf2
line wrap: on
line diff
--- a/game/Piece.java	Tue Feb 22 05:58:55 2011 +0200
+++ b/game/Piece.java	Tue Feb 22 06:01:14 2011 +0200
@@ -100,7 +100,6 @@
     {
         int point = (in + (currRotation * 2)) % 8;
         if (point < 0) point = 8 + point;
-        System.out.print("getAntiRotatedPoint("+ in +"): rot="+currRotation+", point="+point+"\n");
         return point;
     }