mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-24 01:15:29 +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
|
||||
Cleanup. Removed the 'reset' and 'getQualifiedName' methods from the 'ICVaraible' interface.
|
||||
* ICVariable.java
|
||||
|
|
|
@ -207,21 +207,7 @@ public class CValue extends CDebugElement implements ICValue
|
|||
}
|
||||
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 )
|
||||
{
|
||||
String result = null;
|
||||
|
|
Loading…
Add table
Reference in a new issue