JDK-8151847 : rmic should support v53 classfiles
  • Type: Enhancement
  • Component: core-libs
  • Sub-Component: java.rmi
  • Priority: P4
  • Status: Resolved
  • Resolution: Fixed
  • Submitted: 2016-03-14
  • Updated: 2016-03-31
  • Resolved: 2016-03-14
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 9
9 b112Fixed
Related Reports
Relates :  
Description
rmic needs to be updated to support v53 class files.
Comments
Review: http://cr.openjdk.java.net/~jjg/8151847/webrev/
14-03-2016

$ hg diff diff -r 1640de0263f7 src/jdk.rmic/share/classes/sun/tools/java/RuntimeConstants.java --- a/src/jdk.rmic/share/classes/sun/tools/java/RuntimeConstants.java Mon Mar 14 14:28:53 2016 -0700 +++ b/src/jdk.rmic/share/classes/sun/tools/java/RuntimeConstants.java Mon Mar 14 15:53:59 2016 -0700 @@ -67,7 +67,7 @@ /* Class File Constants */ int JAVA_MAGIC = 0xcafebabe; int JAVA_MIN_SUPPORTED_VERSION = 45; - int JAVA_MAX_SUPPORTED_VERSION = 52; + int JAVA_MAX_SUPPORTED_VERSION = 53; int JAVA_MAX_SUPPORTED_MINOR_VERSION = 0; /* Generate class file version for 1.1 by default */
14-03-2016