diff --git a/src/java/com/samskivert/util/ComparableArrayList.java b/src/java/com/samskivert/util/ComparableArrayList.java index 9c2dfe2e..9fdd5a2f 100644 --- a/src/java/com/samskivert/util/ComparableArrayList.java +++ b/src/java/com/samskivert/util/ComparableArrayList.java @@ -74,21 +74,6 @@ public class ComparableArrayList> return insertSorted(value, _comp); } - /** - * Performs a binary search, attempting to locate the specified - * object. The array must be sorted for this to operate correctly and - * the contents of the array must all implement {@link Comparable} - * (and actually be comparable to one another). - * - * @return the index of the object in question or - * (-(insertion point) - 1) (always a negative - * value) if the object was not found in the list. - */ - public int binarySearch (T key) - { - return binarySearch(key, _comp); - } - protected transient Comparator _comp = new Comparator() { public int compare (T o1, T o2) { if (o1 == o2) { // catches null == null