8225361: Start of release updates for JDK 15

8235497: Add SourceVersion.RELEASE_15
8235528: Add source 15 and target 15 to javac

Reviewed-by: erikj, jjg, jlahoda, dholmes, alanb, hseigel, mikael, chegar
This commit is contained in:
Joe Darcy 2019-12-10 16:38:53 -08:00
parent 8a54d97a4d
commit 890826bf5b
53 changed files with 714 additions and 121 deletions

View file

@ -49,7 +49,8 @@ public class ClassVersionChecker {
ELEVEN("11", 55),
TWELVE("12", 56),
THIRTEEN("13", 57),
FOURTEEN("14", 58);
FOURTEEN("14", 58),
FIFTEEN("15", 59);
private Version(String release, int classFileVer) {
this.release = release;