ant private-javadocs runs without warnings; cleaned up some

as-yet-unused code.
This commit is contained in:
dchandler 2003-04-13 01:46:20 +00:00
parent 644c0d3801
commit 6636d03a41
9 changed files with 158 additions and 145 deletions

View file

@ -19,12 +19,12 @@ Contributor(s): ______________________________________.
package org.thdl.util;
import java.io.*;
/** Used by {@link LinkedList} to provide the implementation of a
/** Used by {@link SimplifiedLinkedList} to provide the implementation of a
simple dynamic link list.
@author Andrés Montano Pellegrini
@see LinkedList
@see ListIterator
@see SimplifiedLinkedList
@see SimplifiedListIterator
*/
public class Link
@ -111,4 +111,4 @@ public class Link
else siguiente.insertSorted(link);
}
}
}