classpath-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[cp-patches] Patch: FYI: minor swing 1.5 fix


From: Tom Tromey
Subject: [cp-patches] Patch: FYI: minor swing 1.5 fix
Date: 15 Sep 2005 17:06:49 -0600

I'm checking this in.

In 1.5 this field is marked 'final'.

Tom

Index: ChangeLog
from  Tom Tromey  <address@hidden>
        * javax/swing/text/html/parser/DTD.java (FILE_VERSION): Now
        final.

Index: javax/swing/text/html/parser/DTD.java
===================================================================
RCS file: /cvsroot/classpath/classpath/javax/swing/text/html/parser/DTD.java,v
retrieving revision 1.4
diff -u -r1.4 DTD.java
--- javax/swing/text/html/parser/DTD.java 27 Jul 2005 08:09:36 -0000 1.4
+++ javax/swing/text/html/parser/DTD.java 15 Sep 2005 23:10:52 -0000
@@ -81,8 +81,9 @@
 {
   /**
    * The version of the persistent data format.
+   * @specnote This was made <code>final</code> in 1.5.
    */
-  public static int FILE_VERSION = 1;
+  public static final int FILE_VERSION = 1;
 
   /**
    * The table of existing available DTDs.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]