From 74f76e1c9a49d65fda900f8ebd628570efd491a8 Mon Sep 17 00:00:00 2001 From: John Cortell Date: Mon, 7 Mar 2011 18:54:56 +0000 Subject: [PATCH] Bug 337881: [Memory Browser] Persist the Go To Address history in the launch configuration (removed obsolete file) --- .../provisional/ITargetLabelProvider.java | 24 ------------------- 1 file changed, 24 deletions(-) delete mode 100644 debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/model/provisional/ITargetLabelProvider.java diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/model/provisional/ITargetLabelProvider.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/model/provisional/ITargetLabelProvider.java deleted file mode 100644 index 9a2fb9d48c7..00000000000 --- a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/model/provisional/ITargetLabelProvider.java +++ /dev/null @@ -1,24 +0,0 @@ -/******************************************************************************* - * Copyright (c) 2011, Texas Instruments and others. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html - * - * Contributors: - * Texas Instruments - initial API and implementation - *******************************************************************************/ -package org.eclipse.cdt.debug.core.model.provisional; - -import org.eclipse.debug.core.DebugException; - -/** - * An interface to retrieve the name of the target. - * - * @author Alain Lee - */ -public interface ITargetLabelProvider { - - String getLabel() throws DebugException; - -}