From 192fcc41a967399dfb8c3019ac8cf370f0209f9c Mon Sep 17 00:00:00 2001 From: Alain Magloire Date: Sun, 17 Oct 2004 21:25:00 +0000 Subject: [PATCH] 2004-10-17 Alain Magloire Remove deprecated method in CDI * cdi/org/eclipse/cdt/debug/core/model/ICDITarget.java * cdi/org/eclipse/cdt/debug/core/ICDISession.java --- debug/org.eclipse.cdt.debug.core/ChangeLog | 5 +++++ .../eclipse/cdt/debug/core/cdi/ICDISession.java | 17 ----------------- .../cdt/debug/core/cdi/model/ICDITarget.java | 8 -------- 3 files changed, 5 insertions(+), 25 deletions(-) diff --git a/debug/org.eclipse.cdt.debug.core/ChangeLog b/debug/org.eclipse.cdt.debug.core/ChangeLog index 4e4f6917321..8d9e6e50a99 100644 --- a/debug/org.eclipse.cdt.debug.core/ChangeLog +++ b/debug/org.eclipse.cdt.debug.core/ChangeLog @@ -1,3 +1,8 @@ +2004-10-17 Alain Magloire + Remove deprecated method in CDI + * cdi/org/eclipse/cdt/debug/core/model/ICDITarget.java + * cdi/org/eclipse/cdt/debug/core/ICDISession.java + 2004-10-15 Alain Magloire Adjustment to changes in CDI interface concerning breakpoints. Now the thread ids for a breakpoint is specified in the ICDICondition. diff --git a/debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/ICDISession.java b/debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/ICDISession.java index 847be54fb2d..2b00ceaa6ab 100644 --- a/debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/ICDISession.java +++ b/debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/ICDISession.java @@ -29,23 +29,6 @@ public interface ICDISession { */ ICDITarget[] getTargets(); - /** - * Returns the current debug target associatd with this sesion, - * or null if no debug targets are associated with this session. - * - * @deprecated - * @return ICDITarget the current debug target - */ - ICDITarget getCurrentTarget(); - - /** - * Set the current debug target associatd with this sesion. - * - * @deprecated - * @return ICDITarget the current debug target - */ - void setCurrentTarget(ICDITarget target) throws CDIException; - /** * Sets the value of a debug session attribute. * diff --git a/debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/model/ICDITarget.java b/debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/model/ICDITarget.java index 2b62f9ed176..601fce27bc9 100644 --- a/debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/model/ICDITarget.java +++ b/debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/model/ICDITarget.java @@ -35,14 +35,6 @@ public interface ICDITarget extends ICDIThreadGroup, ICDISessionObject { */ Process getProcess(); - /** - * Set the current thread on the target. - * - * @deprecated - * @param - ICDThread - */ - void setCurrentThread(ICDIThread current) throws CDIException; - /** * Evaluates the expression specified by the given string. * Returns the evaluation result as a String.