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:
parent
1fe30c3a31
commit
a7aaefbef0
|
@ -55,7 +55,6 @@ package org.apache.commons.lang;
|
|||
*/
|
||||
|
||||
import java.util.Iterator;
|
||||
import java.util.List;
|
||||
import java.util.LinkedList;
|
||||
/**
|
||||
* A set of characters. You can iterate over the characters in the
|
||||
|
@ -63,7 +62,7 @@ import java.util.LinkedList;
|
|||
*
|
||||
* @author <a href="bayard@generationjava.com">Henri Yandell</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 {
|
||||
|
||||
|
|
|
@ -54,16 +54,12 @@ package org.apache.commons.lang;
|
|||
* <http://www.apache.org/>.
|
||||
*/
|
||||
|
||||
import java.util.Iterator;
|
||||
import java.util.List;
|
||||
import java.util.LinkedList;
|
||||
|
||||
/**
|
||||
* Numerous routines to manipulate a character set.
|
||||
*
|
||||
* @author <a href="bayard@generationjava.com">Henri Yandell</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 {
|
||||
|
||||
|
|
|
@ -54,18 +54,16 @@ package org.apache.commons.lang.exception;
|
|||
* <http://www.apache.org/>.
|
||||
*/
|
||||
|
||||
import java.io.OutputStream;
|
||||
import java.io.PrintStream;
|
||||
import java.io.PrintWriter;
|
||||
import java.io.StringWriter;
|
||||
import java.io.Writer;
|
||||
|
||||
/**
|
||||
* @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:knielsen@apache.org">Kasper Nielsen</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
|
||||
{
|
||||
|
|
|
@ -54,7 +54,6 @@ package org.apache.commons.lang.exception;
|
|||
* <http://www.apache.org/>.
|
||||
*/
|
||||
|
||||
import java.io.OutputStream;
|
||||
import java.io.PrintStream;
|
||||
import java.io.PrintWriter;
|
||||
|
||||
|
|
|
@ -54,13 +54,8 @@ package org.apache.commons.lang.exception;
|
|||
* <http://www.apache.org/>.
|
||||
*/
|
||||
|
||||
import java.io.OutputStream;
|
||||
import java.io.PrintStream;
|
||||
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.
|
||||
|
@ -125,7 +120,7 @@ import java.util.StringTokenizer;
|
|||
* @author <a href="mailto:dlr@collab.net">Daniel Rall</a>
|
||||
* @author <a href="mailto:knielsen@apache.org">Kasper Nielsen</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
|
||||
{
|
||||
|
|
|
@ -54,13 +54,8 @@ package org.apache.commons.lang.exception;
|
|||
* <http://www.apache.org/>.
|
||||
*/
|
||||
|
||||
import java.io.OutputStream;
|
||||
import java.io.PrintStream;
|
||||
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
|
||||
|
@ -71,7 +66,7 @@ import java.util.StringTokenizer;
|
|||
* @author <a href="mailto:dlr@collab.net">Daniel Rall</a>
|
||||
* @author <a href="mailto:knielsen@apache.org">Kasper Nielsen</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
|
||||
implements Nestable
|
||||
|
|
Loading…
Reference in New Issue