Removing unused variables.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137580 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2003-08-07 21:12:19 +00:00
parent c9ba0a38d3
commit 91a7f67d80
1 changed files with 1 additions and 6 deletions

View File

@ -69,7 +69,7 @@
* @author Stephen Colebourne * @author Stephen Colebourne
* @author Phil Steitz * @author Phil Steitz
* @since 1.0 * @since 1.0
* @version $Id: CharSet.java,v 1.13 2003/08/06 00:02:15 stevencaswell Exp $ * @version $Id: CharSet.java,v 1.14 2003/08/07 21:12:19 bayard Exp $
*/ */
public class CharSet implements Serializable { public class CharSet implements Serializable {
@ -102,11 +102,6 @@ public class CharSet implements Serializable {
COMMON.put("0-9", ASCII_NUMERIC); COMMON.put("0-9", ASCII_NUMERIC);
} }
/** Shared range for the dash character. */
private static final CharRange DASH = new CharRange('-');
/** Shared range for the negate character. */
private static final CharRange NEGATE = new CharRange('^');
/** The set of CharRange objects. */ /** The set of CharRange objects. */
private Set set = new HashSet(); private Set set = new HashSet();