Skip to content

Commit

Permalink
8293892: Add links to JVMS 19 and 20 from ClassFileFormatVersion enum…
Browse files Browse the repository at this point in the history
… constants

Reviewed-by: sundar, mchung
  • Loading branch information
jddarcy committed Sep 16, 2022
1 parent dfb9c06 commit 4b297c1
Showing 1 changed file with 8 additions and 0 deletions.
Expand Up @@ -247,12 +247,20 @@ public enum ClassFileFormatVersion {
/**
* The version recognized by the Java Platform, Standard Edition
* 19.
*
* @see <a
* href="https://docs.oracle.com/javase/specs/jvms/se19/html/index.html">
* <cite>The Java Virtual Machine Specification, Java SE 19 Edition</cite></a>
*/
RELEASE_19(63),

/**
* The version recognized by the Java Platform, Standard Edition
* 20.
*
* @see <a
* href="https://docs.oracle.com/javase/specs/jvms/se20/html/index.html">
* <cite>The Java Virtual Machine Specification, Java SE 20 Edition</cite></a>
*/
RELEASE_20(64);

Expand Down

0 comments on commit 4b297c1

Please sign in to comment.