making constants final (XML, HTML32, HTML40)

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137342 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Alex Chaffee 2003-05-24 15:28:38 +00:00
parent bd3497be79
commit 1d44ada55f
1 changed files with 4 additions and 4 deletions

View File

@ -67,7 +67,7 @@
* @author <a href="mailto:alex@purpletech.com">Alexander Day Chaffee</a>
* @author <a href="mailto:ggregory@seagullsw.com">Gary Gregory</a>
* @since 2.0
* @version $Id: Entities.java,v 1.7 2003/05/24 15:11:36 alex Exp $
* @version $Id: Entities.java,v 1.8 2003/05/24 15:28:38 alex Exp $
*/
class Entities {
@ -366,9 +366,9 @@ class Entities {
{"euro", "8364"}, // -- euro sign, U+20AC NEW -->
};
public static Entities XML;
public static Entities HTML32;
public static Entities HTML40;
public static final Entities XML;
public static final Entities HTML32;
public static final Entities HTML40;
static {
XML = new Entities();