Skip to content
This repository was archived by the owner on Oct 1, 2025. It is now read-only.

Commit 9eb797d

Browse files
Justin Lunaotoj
authored andcommitted
8303028: Update system property for Java SE specification maintenance version
Reviewed-by: lancea, iris, naoto, andrew
1 parent a039f39 commit 9eb797d

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
@@ -190,7 +190,7 @@ Java_java_lang_System_initProperties(JNIEnv *env, jclass cla, jobject props)
190190
PUTPROP(props, "java.specification.version",
191191
JDK_MAJOR_VERSION "." JDK_MINOR_VERSION);
192192
PUTPROP(props, "java.specification.maintenance.version",
193-
"4");
193+
"5");
194194
PUTPROP(props, "java.specification.name",
195195
"Java Platform API Specification");
196196
PUTPROP(props, "java.specification.vendor",

0 commit comments

Comments
 (0)