mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-04 06:45:43 +02:00
Cleanup. Removed the unused 'getNumberOfChildren' method from the 'CValue' class.
This commit is contained in:
parent
87128db4da
commit
44c47aa497
2 changed files with 5 additions and 15 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2003-07-28 Mikhail Khodjaiants
|
||||||
|
Cleanup. Removed the unused 'getNumberOfChildren' method from the 'CValue' class.
|
||||||
|
* CValue.java
|
||||||
|
|
||||||
2003-07-28 Mikhail Khodjaiants
|
2003-07-28 Mikhail Khodjaiants
|
||||||
Cleanup. Removed the 'reset' and 'getQualifiedName' methods from the 'ICVaraible' interface.
|
Cleanup. Removed the 'reset' and 'getQualifiedName' methods from the 'ICVaraible' interface.
|
||||||
* ICVariable.java
|
* ICVariable.java
|
||||||
|
|
|
@ -208,20 +208,6 @@ public class CValue extends CDebugElement implements ICValue
|
||||||
return Arrays.asList( vars );
|
return Arrays.asList( vars );
|
||||||
}
|
}
|
||||||
|
|
||||||
protected int getNumberOfChildren() throws DebugException
|
|
||||||
{
|
|
||||||
int result = 0;
|
|
||||||
try
|
|
||||||
{
|
|
||||||
result = getUnderlyingValue().getChildrenNumber();
|
|
||||||
}
|
|
||||||
catch( CDIException e )
|
|
||||||
{
|
|
||||||
targetRequestFailed( e.getMessage(), null );
|
|
||||||
}
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected String processCDIValue( String cdiValue )
|
protected String processCDIValue( String cdiValue )
|
||||||
{
|
{
|
||||||
String result = null;
|
String result = null;
|
||||||
|
|
Loading…
Add table
Reference in a new issue