mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 14:24:46 +02:00
8214546: Start of release updates for JDK 14
8214547: Add SourceVersion.RELEASE_14 8214548: Add source 14 and target 14 to javac 8214549: Bump maximum recognized class file version to 58 for JDK 14 Reviewed-by: jjg, mikael, erikj, jlahoda, dholmes
This commit is contained in:
parent
d3af9ce324
commit
4750064828
51 changed files with 2944 additions and 89 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2001, 2018, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2001, 2019, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -51,6 +51,7 @@ class Constants {
|
|||
1.11 to 1.11.X 55,0
|
||||
1.12 to 1.12.X 56,0
|
||||
1.13 to 1.13.X 57,0
|
||||
1.14 to 1.14.X 58,0
|
||||
*/
|
||||
|
||||
public static final Package.Version JAVA_MIN_CLASS_VERSION =
|
||||
|
@ -83,6 +84,9 @@ class Constants {
|
|||
public static final Package.Version JAVA13_MAX_CLASS_VERSION =
|
||||
Package.Version.of(57, 00);
|
||||
|
||||
public static final Package.Version JAVA14_MAX_CLASS_VERSION =
|
||||
Package.Version.of(58, 00);
|
||||
|
||||
public static final int JAVA_PACKAGE_MAGIC = 0xCAFED00D;
|
||||
|
||||
public static final Package.Version JAVA5_PACKAGE_VERSION =
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue