1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 09:25:31 +02:00

Remove deprecated method.

MIVariableManager.MIVariableObject.setExpressionData(String,String,int)
which has been deprecated for over 4 years has been removed.  The method
MIVariableManager.MIVariableObject.setExpressionData(ExpressionInfo,String,int,boolean)
should be used instead.

Change-Id: I3ac346eddd8dc119e725d475481836aa5fbd7d79
This commit is contained in:
Marc Khouzam 2015-10-13 09:10:00 -04:00
parent 65f9144e0f
commit 939f543688
3 changed files with 2 additions and 16 deletions

View file

@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-Vendor: %providerName
Bundle-SymbolicName: org.eclipse.cdt.dsf.gdb;singleton:=true
Bundle-Version: 4.9.0.qualifier
Bundle-Version: 5.0.0.qualifier
Bundle-Activator: org.eclipse.cdt.dsf.gdb.internal.GdbPlugin
Bundle-Localization: plugin
Require-Bundle: org.eclipse.core.runtime,

View file

@ -11,7 +11,7 @@
<relativePath>../../pom.xml</relativePath>
</parent>
<version>4.9.0-SNAPSHOT</version>
<version>5.0.0-SNAPSHOT</version>
<artifactId>org.eclipse.cdt.dsf.gdb</artifactId>
<packaging>eclipse-plugin</packaging>
</project>

View file

@ -568,20 +568,6 @@ public class MIVariableManager implements ICommandControl {
public void setGdbName(String n) { fGdbName = n; }
public void setCurrentFormat(String f) { fFormat = f; }
/**
* @param fullExpression
* @param t
* @param num
*
* @deprecated Use
* {@link #setExpressionData(ExpressionInfo, String, int, boolean)}
* instead.
*/
@Deprecated
public void setExpressionData(String fullExpression, String t, int num) {
new ExpressionInfo(fullExpression, fullExpression);
}
/**
* @param info
* @param typeName