There have been so many bugs caused by _elements being allowed to be null.

Fixed another.


git-svn-id: https://samskivert.googlecode.com/svn/trunk@1170 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
ray
2003-07-15 00:30:30 +00:00
parent 165d059265
commit 1fd653ce33
@@ -1,5 +1,5 @@
//
// $Id: SortableArrayList.java,v 1.14 2003/06/16 18:11:30 mdb Exp $
// $Id: SortableArrayList.java,v 1.15 2003/07/15 00:30:30 ray Exp $
//
// samskivert library - useful routines for java programs
// Copyright (C) 2001 Michael Bayne
@@ -237,6 +237,10 @@ public class SortableArrayList extends AbstractList
// documentation inherited from interface
public int indexOf (Object o)
{
if (_elements == null) {
return -1;
}
return ListUtil.indexOfEqual(_elements, o);
}