Structure: fix all remaining bugs and a test case.
[TP_POO.git] / Structure / Entiers.java
index b2c9247076410f0d2d6a21740cbccc3d12df20dc..4abf4f0ba8be2bda10cd4ff51851ab561ba0a6c0 100644 (file)
@@ -97,9 +97,9 @@ class Entiers extends Structure {
     }
 
     public void afficher() {
-        System.out.println("----");
+        System.out.println("---- entiers ----");
         for (int i = 0; i < getCurrentSize(); i++) {
-            System.out.println("element " + i + " " + int_array[i]);
+            System.out.println("element " + i + " " + int_array[i]);
         }
     }