diff --git a/debug/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/RelaunchLastAction.java b/debug/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/RelaunchLastAction.java deleted file mode 100644 index 9c1ff6ef6ee..00000000000 --- a/debug/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/RelaunchLastAction.java +++ /dev/null @@ -1,36 +0,0 @@ -/******************************************************************************* - * Copyright (c) 2000, 2013 IBM Corporation and others. - * - * This program and the accompanying materials - * are made available under the terms of the Eclipse Public License 2.0 - * which accompanies this distribution, and is available at - * https://www.eclipse.org/legal/epl-2.0/ - * - * SPDX-License-Identifier: EPL-2.0 - * - * Contributors: - * IBM Corporation - initial API and implementation - * Wind River Systems - bug 227877 - *******************************************************************************/ -package org.eclipse.debug.internal.ui.actions; - - -import org.eclipse.debug.core.ILaunchConfiguration; -import org.eclipse.debug.internal.ui.contextlaunching.ContextRunner; - -/** - * Re-launches the last launch. - * - * @see ContextRunner - * @see ILaunchConfiguration - * @see RunLastAction - * @see DebugLastAction - * @see ProfileLastAction - * @since 3.8 - * @deprecated This class has been promoted to API as org.eclipse.debug.ui.actions.RelaunchLastAction. Clients - * should discontinue use of this class and use the new API version. - */ -@Deprecated -public abstract class RelaunchLastAction extends org.eclipse.debug.ui.actions.RelaunchLastAction { - -} diff --git a/debug/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/PartPresentationContext.java b/debug/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/PartPresentationContext.java deleted file mode 100644 index 89b81e73ca7..00000000000 --- a/debug/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/PartPresentationContext.java +++ /dev/null @@ -1,44 +0,0 @@ -/******************************************************************************* - * Copyright (c) 2006, 2013 IBM Corporation and others. - * - * This program and the accompanying materials - * are made available under the terms of the Eclipse Public License 2.0 - * which accompanies this distribution, and is available at - * https://www.eclipse.org/legal/epl-2.0/ - * - * SPDX-License-Identifier: EPL-2.0 - * - * Contributors: - * IBM Corporation - initial API and implementation - *******************************************************************************/ -package org.eclipse.debug.internal.ui.viewers; - -import org.eclipse.debug.internal.ui.viewers.model.provisional.PresentationContext; -import org.eclipse.ui.IWorkbenchPart; - -/** - * A presentation context tied to a part. - * - * @since 3.3 - * @deprecated getPart() is now supported by IPresentationContext itself. - */ -@Deprecated -public class PartPresentationContext extends PresentationContext { - - /** - * Constructs a part presentation context. - * - * @param part part - */ - @Deprecated - public PartPresentationContext(IWorkbenchPart part) { - super(part); - } - - @Deprecated - @Override - public IWorkbenchPart getPart() { - return super.getPart(); - } - -}