Documentation fix.

git-svn-id: https://samskivert.googlecode.com/svn/trunk@944 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
mdb
2002-11-24 04:50:27 +00:00
parent ae76d226ce
commit cc6ab12160
@@ -1,5 +1,5 @@
// //
// $Id: SortableArrayList.java,v 1.6 2002/09/20 21:28:08 mdb Exp $ // $Id: SortableArrayList.java,v 1.7 2002/11/24 04:50:27 mdb Exp $
// //
// samskivert library - useful routines for java programs // samskivert library - useful routines for java programs
// Copyright (C) 2001 Michael Bayne // Copyright (C) 2001 Michael Bayne
@@ -23,7 +23,6 @@ package com.samskivert.util;
import java.util.AbstractList; import java.util.AbstractList;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Arrays; import java.util.Arrays;
import java.util.Collections;
import java.util.Comparator; import java.util.Comparator;
import java.util.List; import java.util.List;
import java.util.RandomAccess; import java.util.RandomAccess;
@@ -36,10 +35,9 @@ import java.lang.reflect.Array;
* instance variables private) and provides a mechanism ({@link #sort}) * instance variables private) and provides a mechanism ({@link #sort})
* for sorting the contents of the list that doesn't involve creating two * for sorting the contents of the list that doesn't involve creating two
* object arrays. Two copies of the elements array are made if you called * object arrays. Two copies of the elements array are made if you called
* {@link Collections#sort}</code> (the first is when the {@link * {@link java.util.Collections#sort}</code> (the first is when {@link
* Collections} class calls {@link #toArray} on the collection and the * #toArray} is called on the collection and the second is when {@link
* second is when {@link Arrays#sort} clones the supplied array so that it * Arrays#sort} clones the supplied array so that it can do a merge sort).
* can do a merge sort).
*/ */
public class SortableArrayList extends AbstractList public class SortableArrayList extends AbstractList
implements List, RandomAccess, Cloneable implements List, RandomAccess, Cloneable