java.util code cleanup

This commit is contained in:
Joel Dice
2008-02-28 15:18:46 -07:00
parent e93ea33f82
commit 51a731847a
6 changed files with 8 additions and 28 deletions

View File

@ -23,7 +23,7 @@ public interface Collection<T> extends Iterable<T> {
public boolean remove(T element);
public <T> T[] toArray(T[] array);
public <S> S[] toArray(S[] array);
public void clear();
}