From 4e7c060176e30c197be4b8a3d6e114af4111040a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B0=D0=BD=D0=B4=D1=8A?= =?UTF-8?q?=D1=80=20=D0=9A=D1=83=D1=80=D1=82=D0=B0=D0=BA=D0=BE=D0=B2?= Date: Sat, 20 Dec 2025 18:57:54 +0200 Subject: [PATCH] Remove deprecated methods in ContextRunner It's internal code but even in this case deprecated 2 years ago. --- .../ui/contextlaunching/ContextRunner.java | 32 +------------------ 1 file changed, 1 insertion(+), 31 deletions(-) diff --git a/debug/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/contextlaunching/ContextRunner.java b/debug/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/contextlaunching/ContextRunner.java index 512e0a6cc32..978bc0f26fb 100644 --- a/debug/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/contextlaunching/ContextRunner.java +++ b/debug/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/contextlaunching/ContextRunner.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2016 IBM Corporation and others. + * Copyright (c) 2007, 2025 IBM Corporation and others. * * This program and the accompanying materials * are made available under the terms of the Eclipse Public License 2.0 @@ -261,20 +261,6 @@ private boolean validateMode(ILaunchConfiguration configuration, String mode) { return true; } - /** - * Presents the user with a dialog to pick the launch configuration to launch - * and launches that configuration. - * - * @param configurations the listing of applicable configurations to present - * @param mode the mode - * @deprecated use the 3 argument variant of showConfigurationSelectionDialog() - * @see #showConfigurationSelectionDialog(List, String, boolean) - */ - @Deprecated(forRemoval = true, since = "2023-12") - protected void showConfigurationSelectionDialog(List configurations, String mode) { - showConfigurationSelectionDialog(configurations, mode, false); - } - /** * Presents the user with a dialog to pick the launch configuration to * launch and launches that configuration. @@ -292,22 +278,6 @@ protected void showConfigurationSelectionDialog(List confi } } - /** - * Presents a selection dialog to the user to pick a launch shortcut and - * launch using that shortcut. - * - * @param resource the resource context - * @param shortcuts the list of applicable shortcuts - * @param mode the mode - * @param selection the current selection - * @deprecated use the 3 argument variant of showShortcutSelectionDialog() - * @see #showShortcutSelectionDialog(IResource, List, String, IStructuredSelection, boolean) - */ - @Deprecated(forRemoval = true, since = "2023-12") - protected void showShortcutSelectionDialog(IResource resource, List shortcuts, String mode, IStructuredSelection selection) { - showShortcutSelectionDialog(resource, shortcuts, mode, selection, false); - } - /** * Presents a selection dialog to the user to pick a launch shortcut and * launch using that shortcut.