Code cleanup. master
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Sat, 12 Jan 2019 21:43:45 +0000 (22:43 +0100)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Sat, 12 Jan 2019 21:43:45 +0000 (22:43 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
Piles/Pile.java

index ccd9fa769852c1b82b964e4090df503f1a6a5491..5d309d16ab415dbc51092813e85c54ddb56a7d66 100644 (file)
@@ -7,6 +7,16 @@ public class Pile {
     private int array_size;
     private int head_index;
 
+    /**
+     * [Pile description]
+     * @param int size [description]
+     */
+    Pile(int size) {
+        int_array = new int[size];
+        setSize(size);
+        setHeadIndex(0);
+    }
+
     /**
      * set the size of the internal array
      * @param int size the size of the array
@@ -39,16 +49,6 @@ public class Pile {
         return head_index;
     }
 
-    /**
-     * [Pile description]
-     * @param int size [description]
-     */
-    Pile(int size) {
-        int_array = new int[size];
-        setSize(size);
-        setHeadIndex(0);
-    }
-
     /**
      * [empiler description]
      * @param int value [description]