ListUtil.containsEqual() -> ListUtil.contains()

git-svn-id: https://samskivert.googlecode.com/svn/trunk@1515 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
mdb
2004-10-23 17:26:30 +00:00
parent 34de8180e2
commit 7d14559875
2 changed files with 6 additions and 6 deletions
@@ -119,7 +119,7 @@ public class ListUtil
* expanded if necessary.
*
* @param list the list in which to insert the element. Can be null.
* @param startIdx the index at which to insert the element.
* @param index the index at which to insert the element.
* @param element the element to insert.
*
* @return a reference to the list with element inserted (might not be
@@ -250,7 +250,7 @@ public class ListUtil
*
* @return true if a matching element was found, false otherwise.
*/
public static boolean containsEqual (Object[] list, Object element)
public static boolean contains (Object[] list, Object element)
{
return contains(EQUALS_COMP, list, element);
}
@@ -497,10 +497,10 @@ public class ListUtil
String newBar = new String("bar"); // prevent java from cleverly
// referencing the same string
// from the constant pool
System.out.println("contains(newBar): " +
System.out.println("containsRef(newBar): " +
ListUtil.containsRef(list, newBar));
System.out.println("containsEqual(newBar): " +
ListUtil.containsEqual(list, newBar));
System.out.println("contains(newBar): " +
ListUtil.contains(list, newBar));
ListUtil.clearEqual(list, newBar);
System.out.println("clearEqual(newBar): " + StringUtil.toString(list));
@@ -265,7 +265,7 @@ public class RuntimeAdjust
public void setValue (String value)
{
if (!ListUtil.containsEqual(_values, value)) {
if (!ListUtil.contains(_values, value)) {
Log.warning("Refusing invalid adjustment [name=" + _name +
", values=" + StringUtil.toString(_values) +
", value=" + value + "].");