online_ide: update to the new API of the loader
[nit.git] / tests / test_operator_brackets.nit
index cbf28d8..e00f4d2 100644 (file)
@@ -48,15 +48,7 @@ class Matrice
                row[y] = v
        end
 
-private
-       var _tab: Array[Array[Int]] # An array of array to store items
-
-
-       init
-       # Build an empty matrice
-       do
-               _tab = new Array[Array[Int]]
-       end
+       private var tab = new Array[Array[Int]] # An array of array to store items
 end