8003261: static field is public but not final

Add final to fVersion field, and make it a non-compile time constant.

Reviewed-by: hawtin, lancea, dholmes, chegar
This commit is contained in:
Joe Wang 2012-12-18 21:11:43 -08:00
parent 7aab781edb
commit 9ee412031f

View File

@ -74,7 +74,7 @@ public class Version {
/** Version string.
* @deprecated getVersion() should be used instead. */
public static String fVersion = "Xerces-J 2.7.1";
public static final String fVersion = getVersion();
private static final String fImmutableVersion = "Xerces-J 2.7.1";