diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICDISourceManager.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICDISourceManager.java index a6eef79ad3e..8a40e121352 100644 --- a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICDISourceManager.java +++ b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICDISourceManager.java @@ -5,8 +5,6 @@ package org.eclipse.cdt.debug.core.cdi; -import java.io.File; - import org.eclipse.cdt.debug.core.cdi.model.ICDIInstruction; import org.eclipse.cdt.debug.core.cdi.model.ICDIMixedInstruction; @@ -30,30 +28,6 @@ public interface ICDISourceManager extends ICDISessionObject */ String[] getSourcePaths() throws CDIException; - /** - * Returns an array of directories. Returns the empty array - * if the source path is empty. - * - * @return an array of directories - * @throws CDIException on failure. Reasons include: - */ - File[] getDirectories() throws CDIException; - - /** - * Sets the source path according to the given array of directories. - * - * @param directories - the array of directories - * @throws CDIException on failure. Reasons include: - */ - void set( File[] directories ) throws CDIException; - - /** - * Reset the source path to empty. - * - * @throws CDIException on failure. Reasons include: - */ - void reset() throws CDIException; - /** * @param startAddress is the begining address * @param endAddress is the end address