Skip to content

Commit 4328fec

Browse files
Justin Lunaotoj
authored andcommitted
8303028: Update system property for Java SE specification maintenance version
Reviewed-by: rriggs, lancea, naoto, iris Backport-of: 9eb797dc6ac09f250b4e308abd43bffa6529c534
1 parent 3d9e8d0 commit 4328fec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jdk/src/share/native/java/lang/System.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1994, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1994, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -215,7 +215,7 @@ Java_java_lang_System_initProperties(JNIEnv *env, jclass cla, jobject props)
215215
PUTPROP(props, "java.specification.version",
216216
JDK_MAJOR_VERSION "." JDK_MINOR_VERSION);
217217
PUTPROP(props, "java.specification.maintenance.version",
218-
"4");
218+
"5");
219219
PUTPROP(props, "java.specification.name",
220220
"Java Platform API Specification");
221221
PUTPROP(props, "java.specification.vendor",

0 commit comments

Comments
 (0)