Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ui/org.eclipse.pde.launching/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %name
Bundle-SymbolicName: org.eclipse.pde.launching;singleton:=true
Bundle-Version: 3.13.600.qualifier
Bundle-Version: 3.13.700.qualifier
Bundle-RequiredExecutionEnvironment: JavaSE-17
Bundle-Vendor: %provider-name
Require-Bundle: org.eclipse.jdt.junit.core;bundle-version="[3.6.0,4.0.0)",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public abstract class AbstractPDELaunchConfiguration extends LaunchConfiguration
* @since 3.8
* @noreference This field is not intended to be referenced by clients.
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public static boolean shouldVMAddModuleSystem = false;

private static final String PDE_LAUNCH_SHOW_COMMAND = "pde.launch.showcommandline"; //$NON-NLS-1$
Expand Down Expand Up @@ -539,7 +539,7 @@ protected void validatePluginDependencies(ILaunchConfiguration configuration, IP
* @deprecated This method was wrongly added and is no longer used. It is a no-op now.
* @noreference This method is not intended to be referenced by clients.
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public static void updatePDELaunchConfigModuleSystem(boolean java9) {
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public interface IPDELauncherConstants {
*
* @deprecated use IJavaLaunchConfigurationConstants.ATTR_JRE_CONTAINER_PATH
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
String VMINSTALL = "vminstall"; //$NON-NLS-1$

/**
Expand All @@ -136,7 +136,7 @@ public interface IPDELauncherConstants {
*
* @deprecated As of 3.6 the feature-based self-hosting option is not supported
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
String USEFEATURES = "usefeatures"; //$NON-NLS-1$

/**
Expand Down Expand Up @@ -267,7 +267,7 @@ public interface IPDELauncherConstants {
* @deprecated This option is no longer supported in the launch config. A recent selection is stored
* in dialog settings.
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
String TRACING_SELECTED_PLUGIN = "selectedPlugin"; //$NON-NLS-1$

/**
Expand Down
Loading