mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +02:00
8214794: java.specification.version should be only the major version number
Reviewed-by: martin, mchung, bpb
This commit is contained in:
parent
4e935d302a
commit
f0279fd499
2 changed files with 5 additions and 1 deletions
|
@ -51,6 +51,9 @@ class VersionProps {
|
|||
private static final String VERSION_NUMBER =
|
||||
"@@VERSION_NUMBER@@";
|
||||
|
||||
private static final String VERSION_SPECIFICATION =
|
||||
"@@VERSION_SPECIFICATION@@";
|
||||
|
||||
private static final String VERSION_BUILD =
|
||||
"@@VERSION_BUILD@@";
|
||||
|
||||
|
@ -97,7 +100,7 @@ class VersionProps {
|
|||
|
||||
props.setProperty("java.class.version", CLASSFILE_MAJOR_MINOR);
|
||||
|
||||
props.setProperty("java.specification.version", VERSION_NUMBER);
|
||||
props.setProperty("java.specification.version", VERSION_SPECIFICATION);
|
||||
props.setProperty("java.specification.name", "Java Platform API Specification");
|
||||
props.setProperty("java.specification.vendor", "Oracle Corporation");
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue