8330458: Add missing @since tag to ClassFile.JAVA_23_VERSION

Reviewed-by: jjg, iris, asotona
This commit is contained in:
Joe Darcy 2024-04-18 16:12:50 +00:00
parent f713766cab
commit 235ba9a702

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2022, 2023, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2022, 2024, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -1475,7 +1475,10 @@ public sealed interface ClassFile
/** The class major version of JAVA_22. */ /** The class major version of JAVA_22. */
int JAVA_22_VERSION = 66; int JAVA_22_VERSION = 66;
/** 67 */ /**
* The class major version of JAVA_23.
* @since 23
*/
int JAVA_23_VERSION = 67; int JAVA_23_VERSION = 67;
/** /**