Skip to content

Commit e4b15d7

Browse files
committed
Remove deprecated methods in ContextRunner
It's internal code but even in this case deprecated 2 years ago.
1 parent a3cab84 commit e4b15d7

File tree

1 file changed

+1
-31
lines changed
  • debug/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/contextlaunching

1 file changed

+1
-31
lines changed

debug/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/contextlaunching/ContextRunner.java

Lines changed: 1 addition & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2007, 2016 IBM Corporation and others.
2+
* Copyright (c) 2007, 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
@@ -261,20 +261,6 @@ private boolean validateMode(ILaunchConfiguration configuration, String mode) {
261261
return true;
262262
}
263263

264-
/**
265-
* Presents the user with a dialog to pick the launch configuration to launch
266-
* and launches that configuration.
267-
*
268-
* @param configurations the listing of applicable configurations to present
269-
* @param mode the mode
270-
* @deprecated use the 3 argument variant of showConfigurationSelectionDialog()
271-
* @see #showConfigurationSelectionDialog(List, String, boolean)
272-
*/
273-
@Deprecated(forRemoval = true, since = "2023-12")
274-
protected void showConfigurationSelectionDialog(List<ILaunchConfiguration> configurations, String mode) {
275-
showConfigurationSelectionDialog(configurations, mode, false);
276-
}
277-
278264
/**
279265
* Presents the user with a dialog to pick the launch configuration to
280266
* launch and launches that configuration.
@@ -292,22 +278,6 @@ protected void showConfigurationSelectionDialog(List<ILaunchConfiguration> confi
292278
}
293279
}
294280

295-
/**
296-
* Presents a selection dialog to the user to pick a launch shortcut and
297-
* launch using that shortcut.
298-
*
299-
* @param resource the resource context
300-
* @param shortcuts the list of applicable shortcuts
301-
* @param mode the mode
302-
* @param selection the current selection
303-
* @deprecated use the 3 argument variant of showShortcutSelectionDialog()
304-
* @see #showShortcutSelectionDialog(IResource, List, String, IStructuredSelection, boolean)
305-
*/
306-
@Deprecated(forRemoval = true, since = "2023-12")
307-
protected void showShortcutSelectionDialog(IResource resource, List<LaunchShortcutExtension> shortcuts, String mode, IStructuredSelection selection) {
308-
showShortcutSelectionDialog(resource, shortcuts, mode, selection, false);
309-
}
310-
311281
/**
312282
* Presents a selection dialog to the user to pick a launch shortcut and
313283
* launch using that shortcut.

0 commit comments

Comments
 (0)