Skip to content

Commit 3822194

Browse files
authored
[24] Remove BETA_JAVA24 Disclaimers eclipse-jdt#625
Update copyright, Javadoc links etc. post Java 24 release eclipse-jdt#638
1 parent 7281ab3 commit 3822194

File tree

13 files changed

+6
-59
lines changed

13 files changed

+6
-59
lines changed

org.eclipse.jdt.debug.tests/test plugin/org/eclipse/jdt/debug/testplugin/JavaProjectHelper.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
11
/*******************************************************************************
2-
* Copyright (c) 2000, 2024 IBM Corporation and others.
2+
* Copyright (c) 2000, 2025 IBM Corporation and others.
33
*
44
* This program and the accompanying materials
55
* are made available under the terms of the Eclipse Public License 2.0
66
* which accompanies this distribution, and is available at
77
* https://www.eclipse.org/legal/epl-2.0/
88
*
9-
* This is an implementation of an early-draft specification developed under the Java
10-
* Community Process (JCP) and is made available for testing and evaluation purposes
11-
* only. The code is not compatible with any specification of the JCP.
12-
*
139
* SPDX-License-Identifier: EPL-2.0
1410
*
1511
* Contributors:

org.eclipse.jdt.debug.tests/tests/org/eclipse/jdt/debug/tests/AbstractDebugTest.java

-4
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,6 @@
66
* which accompanies this distribution, and is available at
77
* https://www.eclipse.org/legal/epl-2.0/
88
*
9-
* This is an implementation of an early-draft specification developed under the Java
10-
* Community Process (JCP) and is made available for testing and evaluation purposes
11-
* only. The code is not compatible with any specification of the JCP.
12-
*
139
* SPDX-License-Identifier: EPL-2.0
1410
*
1511
* Contributors:

org.eclipse.jdt.debug.tests/tests/org/eclipse/jdt/debug/tests/core/ExecutionEnvironmentTests.java

-4
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@
88
*
99
* SPDX-License-Identifier: EPL-2.0
1010
*
11-
* This is an implementation of an early-draft specification developed under the Java
12-
* Community Process (JCP) and is made available for testing and evaluation purposes
13-
* only. The code is not compatible with any specification of the JCP.
14-
*
1511
* Contributors:
1612
* IBM Corporation - initial API and implementation
1713
*******************************************************************************/

org.eclipse.jdt.debug.tests/tests/org/eclipse/jdt/debug/tests/core/VMInstallTests.java

-4
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@
88
*
99
* SPDX-License-Identifier: EPL-2.0
1010
*
11-
* This is an implementation of an early-draft specification developed under the Java
12-
* Community Process (JCP) and is made available for testing and evaluation purposes
13-
* only. The code is not compatible with any specification of the JCP.
14-
*
1511
* Contributors:
1612
* IBM Corporation - initial API and implementation
1713
*******************************************************************************/

org.eclipse.jdt.debug.tests/tests/org/eclipse/jdt/debug/tests/launching/InstanceMainMethodsTests.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
11
/*******************************************************************************
2-
* Copyright (c) 2022, 2024 Red Hat Inc. and others.
2+
* Copyright (c) 2022, 2025 Red Hat Inc. and others.
33
*
44
* This program and the accompanying materials
55
* are made available under the terms of the Eclipse Public License 2.0
66
* which accompanies this distribution, and is available at
77
* https://www.eclipse.org/legal/epl-2.0/
88
*
9-
* This is an implementation of an early-draft specification developed under the Java
10-
* Community Process (JCP) and is made available for testing and evaluation purposes
11-
* only. The code is not compatible with any specification of the JCP.
12-
*
139
* SPDX-License-Identifier: EPL-2.0
1410
*
1511
* Contributors:

org.eclipse.jdt.debug.tests/tests/org/eclipse/jdt/debug/tests/ui/VirtualThreadsDebugViewTests.java

-4
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,6 @@
66
* which accompanies this distribution, and is available at
77
* https://www.eclipse.org/legal/epl-2.0/
88
*
9-
* This is an implementation of an early-draft specification developed under the Java
10-
* Community Process (JCP) and is made available for testing and evaluation purposes
11-
* only. The code is not compatible with any specification of the JCP.
12-
*
139
* SPDX-License-Identifier: EPL-2.0
1410
*
1511
* Contributors:

org.eclipse.jdt.launching/launching/org/eclipse/jdt/internal/launching/EECompilationParticipant.java

-4
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@
88
*
99
* SPDX-License-Identifier: EPL-2.0
1010
*
11-
* This is an implementation of an early-draft specification developed under the Java
12-
* Community Process (JCP) and is made available for testing and evaluation purposes
13-
* only. The code is not compatible with any specification of the JCP.
14-
*
1511
* Contributors:
1612
* IBM Corporation - initial API and implementation
1713
*******************************************************************************/

org.eclipse.jdt.launching/launching/org/eclipse/jdt/internal/launching/StandardVMType.java

+1-6
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@
88
*
99
* SPDX-License-Identifier: EPL-2.0
1010
*
11-
* This is an implementation of an early-draft specification developed under the Java
12-
* Community Process (JCP) and is made available for testing and evaluation purposes
13-
* only. The code is not compatible with any specification of the JCP.
14-
*
1511
* Contributors:
1612
* IBM Corporation - initial API and implementation
1713
* Michael Allman - Bug 211648, Bug 156343 - Standard VM not supported on MacOS
@@ -814,8 +810,7 @@ public URL getDefaultJavadocLocation(File installLocation) {
814810
public static URL getDefaultJavadocLocation(String version) {
815811
try {
816812
if (version.startsWith(JavaCore.VERSION_24)) {
817-
// To modify to version 24 after the release
818-
return new URI("https://docs.oracle.com/en/java/javase/23/docs/api/").toURL(); //$NON-NLS-1$
813+
return new URI("https://docs.oracle.com/en/java/javase/24/docs/api/").toURL(); //$NON-NLS-1$
819814
} else if (version.startsWith(JavaCore.VERSION_23)) {
820815
return new URI("https://docs.oracle.com/en/java/javase/23/docs/api/").toURL(); //$NON-NLS-1$
821816
} else if (version.startsWith(JavaCore.VERSION_22)) {

org.eclipse.jdt.launching/launching/org/eclipse/jdt/internal/launching/environments/EnvironmentsManager.java

-4
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@
88
*
99
* SPDX-License-Identifier: EPL-2.0
1010
*
11-
* This is an implementation of an early-draft specification developed under the Java
12-
* Community Process (JCP) and is made available for testing and evaluation purposes
13-
* only. The code is not compatible with any specification of the JCP.
14-
*
1511
* Contributors:
1612
* IBM Corporation - initial API and implementation
1713
*

org.eclipse.jdt.launching/launching/org/eclipse/jdt/internal/launching/environments/ExecutionEnvironmentAnalyzer.java

-4
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,6 @@
66
* which accompanies this distribution, and is available at
77
* https://www.eclipse.org/legal/epl-2.0/
88
*
9-
* This is an implementation of an early-draft specification developed under the Java
10-
* Community Process (JCP) and is made available for testing and evaluation purposes
11-
* only. The code is not compatible with any specification of the JCP.
12-
*
139
* SPDX-License-Identifier: EPL-2.0
1410
*
1511
* Contributors:

org.eclipse.jdt.launching/launching/org/eclipse/jdt/launching/JavaRuntime.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2000, 2024 IBM Corporation and others.
2+
* Copyright (c) 2000, 2025 IBM Corporation and others.
33
*
44
* This program and the accompanying materials
55
* are made available under the terms of the Eclipse Public License 2.0
@@ -8,10 +8,6 @@
88
*
99
* SPDX-License-Identifier: EPL-2.0
1010
*
11-
* This is an implementation of an early-draft specification developed under the Java
12-
* Community Process (JCP) and is made available for testing and evaluation purposes
13-
* only. The code is not compatible with any specification of the JCP.
14-
*
1511
* Contributors:
1612
* IBM Corporation - initial API and implementation
1713
* Frits Jalvingh - Contribution for Bug 459831 - [launching] Support attaching

org.eclipse.jdt.launching/plugin.properties

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
11
###############################################################################
2-
# Copyright (c) 2000, 2024 IBM Corporation and others.
2+
# Copyright (c) 2000, 2025 IBM Corporation and others.
33
#
44
# This program and the accompanying materials
55
# are made available under the terms of the Eclipse Public License 2.0
66
# which accompanies this distribution, and is available at
77
# https://www.eclipse.org/legal/epl-2.0/
88
#
9-
# This is an implementation of an early-draft specification developed under the Java
10-
# Community Process (JCP) and is made available for testing and evaluation purposes
11-
# only. The code is not compatible with any specification of the JCP.
12-
#
139
# SPDX-License-Identifier: EPL-2.0
1410
#
1511
# Contributors:

org.eclipse.jdt.launching/plugin.xml

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,13 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<?eclipse version="3.0"?>
33
<!--
4-
Copyright (c) 2005, 2024 IBM Corporation and others.
4+
Copyright (c) 2005, 2025 IBM Corporation and others.
55
66
This program and the accompanying materials
77
are made available under the terms of the Eclipse Public License 2.0
88
which accompanies this distribution, and is available at
99
https://www.eclipse.org/legal/epl-2.0/
1010
11-
This is an implementation of an early-draft specification developed under the Java
12-
Community Process (JCP) and is made available for testing and evaluation purposes
13-
only. The code is not compatible with any specification of the JCP.
14-
1511
SPDX-License-Identifier: EPL-2.0
1612
1713
Contributors:

0 commit comments

Comments
 (0)