Some changes left :S
authorgumartinm <gu.martinm@gmail.com>
Sun, 6 Nov 2011 23:32:21 +0000 (00:32 +0100)
committergumartinm <gu.martinm@gmail.com>
Sun, 6 Nov 2011 23:32:21 +0000 (00:32 +0100)
This is a personal project so, I do whatever I want XD.
In the real world I would save this commit for another moment.

AndroidTetris/src/de/android/androidtetris/Piece.java
AndroidTetris/src/de/android/androidtetris/Tile.java

index a9c13f8..cbef91b 100644 (file)
@@ -90,7 +90,7 @@ public enum Piece {
        //Every piece is contained in a square. This is the square's height.
        private static final int HEIGHT = 4;
        //Every piece is contained in a square.
-       public Tile[][] size = new Tile[WIDTH][HEIGHT];
+       public final Tile[][] size = new Tile[WIDTH][HEIGHT];
        //Stores the x coordinate (the position of this piece on the grid)
        public int x = 0;
        //Stores the y coordinate (the position of this piece on the grid)
index b1e162d..5bb79b1 100644 (file)
@@ -82,7 +82,7 @@ public enum Tile {
        
        
        //Stores the argument of the enum constant (passed to the constructor) JLS§8.9.1
-       private int color;
+       private final int color;
        
        
        /**
@@ -91,7 +91,7 @@ public enum Tile {
         * 
         * @param color It is the argument of the enum constant
         */
-       Tile (int color)
+       Tile (final int color)
        {
                this.color = color;
        }