Removed unused imports.

Submitted by:	Fredrik Westermarck <fredrik.westermarck@mdh.se>


git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137076 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2002-09-29 08:20:52 +00:00
parent 1fe30c3a31
commit a7aaefbef0
6 changed files with 5 additions and 23 deletions

View File

@ -55,7 +55,6 @@
*/ */
import java.util.Iterator; import java.util.Iterator;
import java.util.List;
import java.util.LinkedList; import java.util.LinkedList;
/** /**
* A set of characters. You can iterate over the characters in the * A set of characters. You can iterate over the characters in the
@ -63,7 +62,7 @@
* *
* @author <a href="bayard@generationjava.com">Henri Yandell</a> * @author <a href="bayard@generationjava.com">Henri Yandell</a>
* @author <a href="mailto:scolebourne@joda.org">Stephen Colebourne</a> * @author <a href="mailto:scolebourne@joda.org">Stephen Colebourne</a>
* @version $Id: CharSet.java,v 1.3 2002/09/29 07:15:12 bayard Exp $ * @version $Id: CharSet.java,v 1.4 2002/09/29 08:20:52 bayard Exp $
*/ */
public class CharSet { public class CharSet {

View File

@ -54,16 +54,12 @@
* <http://www.apache.org/>. * <http://www.apache.org/>.
*/ */
import java.util.Iterator;
import java.util.List;
import java.util.LinkedList;
/** /**
* Numerous routines to manipulate a character set. * Numerous routines to manipulate a character set.
* *
* @author <a href="bayard@generationjava.com">Henri Yandell</a> * @author <a href="bayard@generationjava.com">Henri Yandell</a>
* @author <a href="mailto:scolebourne@joda.org">Stephen Colebourne</a> * @author <a href="mailto:scolebourne@joda.org">Stephen Colebourne</a>
* @version $Id: CharSetUtils.java,v 1.5 2002/09/28 10:34:54 scolebourne Exp $ * @version $Id: CharSetUtils.java,v 1.6 2002/09/29 08:20:52 bayard Exp $
*/ */
public class CharSetUtils { public class CharSetUtils {

View File

@ -54,18 +54,16 @@
* <http://www.apache.org/>. * <http://www.apache.org/>.
*/ */
import java.io.OutputStream;
import java.io.PrintStream; import java.io.PrintStream;
import java.io.PrintWriter; import java.io.PrintWriter;
import java.io.StringWriter; import java.io.StringWriter;
import java.io.Writer;
/** /**
* @author <a href="mailto:Rafal.Krzewski@e-point.pl">Rafal Krzewski</a> * @author <a href="mailto:Rafal.Krzewski@e-point.pl">Rafal Krzewski</a>
* @author <a href="mailto:dlr@collab.net">Daniel Rall</a> * @author <a href="mailto:dlr@collab.net">Daniel Rall</a>
* @author <a href="mailto:knielsen@apache.org">Kasper Nielsen</a> * @author <a href="mailto:knielsen@apache.org">Kasper Nielsen</a>
* @author <a href="mailto:steven@caswell.name">Steven Caswell</a> * @author <a href="mailto:steven@caswell.name">Steven Caswell</a>
* @version $Id: NestableDelegate.java,v 1.8 2002/08/25 19:09:38 dlr Exp $ * @version $Id: NestableDelegate.java,v 1.9 2002/09/29 08:20:52 bayard Exp $
*/ */
public class NestableDelegate public class NestableDelegate
{ {

View File

@ -54,7 +54,6 @@
* <http://www.apache.org/>. * <http://www.apache.org/>.
*/ */
import java.io.OutputStream;
import java.io.PrintStream; import java.io.PrintStream;
import java.io.PrintWriter; import java.io.PrintWriter;

View File

@ -54,13 +54,8 @@
* <http://www.apache.org/>. * <http://www.apache.org/>.
*/ */
import java.io.OutputStream;
import java.io.PrintStream; import java.io.PrintStream;
import java.io.PrintWriter; import java.io.PrintWriter;
import java.io.StringWriter;
import java.io.Writer;
import java.util.LinkedList;
import java.util.StringTokenizer;
/** /**
* The base class of all exceptions which can contain other exceptions. * The base class of all exceptions which can contain other exceptions.
@ -125,7 +120,7 @@
* @author <a href="mailto:dlr@collab.net">Daniel Rall</a> * @author <a href="mailto:dlr@collab.net">Daniel Rall</a>
* @author <a href="mailto:knielsen@apache.org">Kasper Nielsen</a> * @author <a href="mailto:knielsen@apache.org">Kasper Nielsen</a>
* @author <a href="mailto:steven@caswell.name">Steven Caswell</a> * @author <a href="mailto:steven@caswell.name">Steven Caswell</a>
* @version $Id: NestableException.java,v 1.4 2002/08/25 19:17:31 dlr Exp $ * @version $Id: NestableException.java,v 1.5 2002/09/29 08:20:52 bayard Exp $
*/ */
public class NestableException extends Exception implements Nestable public class NestableException extends Exception implements Nestable
{ {

View File

@ -54,13 +54,8 @@
* <http://www.apache.org/>. * <http://www.apache.org/>.
*/ */
import java.io.OutputStream;
import java.io.PrintStream; import java.io.PrintStream;
import java.io.PrintWriter; import java.io.PrintWriter;
import java.io.StringWriter;
import java.io.Writer;
import java.util.LinkedList;
import java.util.StringTokenizer;
/** /**
* The base class of all runtime exceptions which can contain other * The base class of all runtime exceptions which can contain other
@ -71,7 +66,7 @@
* @author <a href="mailto:dlr@collab.net">Daniel Rall</a> * @author <a href="mailto:dlr@collab.net">Daniel Rall</a>
* @author <a href="mailto:knielsen@apache.org">Kasper Nielsen</a> * @author <a href="mailto:knielsen@apache.org">Kasper Nielsen</a>
* @author <a href="mailto:steven@caswell.name">Steven Caswell</a> * @author <a href="mailto:steven@caswell.name">Steven Caswell</a>
* @version $Id: NestableRuntimeException.java,v 1.4 2002/08/25 19:15:03 dlr Exp $ * @version $Id: NestableRuntimeException.java,v 1.5 2002/09/29 08:20:52 bayard Exp $
*/ */
public class NestableRuntimeException extends RuntimeException public class NestableRuntimeException extends RuntimeException
implements Nestable implements Nestable