Add Affichable interface.
[TP_POO.git] / Structure / Entiers.java
index 4abf4f0ba8be2bda10cd4ff51851ab561ba0a6c0..b4cffb15f6f90406be47212e9f9dede7a02f1e66 100644 (file)
@@ -60,6 +60,7 @@ class Entiers extends Structure {
 
     private int binarySearch(int first, int last, int value) {
         if (last < first)
+            //FIXME: should not return an integer 
             return -1;
         int middle = (first + last) / 2;
         if (value == int_array[middle])