Declare variable final

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137515 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Colebourne 2003-07-26 15:33:34 +00:00
parent 3f532cf5c3
commit bdbdb49ace
1 changed files with 2 additions and 2 deletions

View File

@ -62,14 +62,14 @@
* @author <a href="bayard@generationjava.com">Henri Yandell</a> * @author <a href="bayard@generationjava.com">Henri Yandell</a>
* @author Stephen Colebourne * @author Stephen Colebourne
* @since 1.0 * @since 1.0
* @version $Id: CharRange.java,v 1.7 2003/07/16 00:39:05 scolebourne Exp $ * @version $Id: CharRange.java,v 1.8 2003/07/26 15:33:34 scolebourne Exp $
*/ */
class CharRange { class CharRange {
/** /**
* <p>Used internally to represent <code>null</code> in a char.</p> * <p>Used internally to represent <code>null</code> in a char.</p>
*/ */
private static char UNSET; private static final char UNSET = 0;
private char start; private char start;
private char close; private char close;