1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Cleanup. Removed warnings.

This commit is contained in:
Mikhail Khodjaiants 2003-03-07 19:39:47 +00:00
parent 640ec6e2e6
commit cecdca34fd
4 changed files with 0 additions and 26 deletions

View file

@ -22,11 +22,6 @@ public class CArrayEntryVariable extends CModificationVariable
*/
private int fIndex;
/**
* The type name of this variable. Cached lazily.
*/
private String fReferenceTypeName = null;
/**
* Constructor for CArrayEntryVariable.
* @param target

View file

@ -360,10 +360,6 @@ public class CDebugTarget extends CDebugElement
}
}
private void disableAddressBreakpoints()
{
}
private boolean isTargetBreakpoint( IBreakpoint bp )
{
IProject project = bp.getMarker().getResource().getProject();

View file

@ -24,8 +24,6 @@ import org.eclipse.debug.core.model.IValue;
*/
public abstract class CModificationVariable extends CVariable
{
private static final String ERROR_MESSAGE = "Value modification failed - unable to generate value from expression: {0}";
/**
* Constructor for CModificationVariable.
* @param parent

View file

@ -107,21 +107,6 @@ public class CRegisterGroup extends CDebugElement implements IRegisterGroup
return results;
}
private void updateRegisters() throws DebugException
{
ICDIRegister[] cdiRegisters = getCDIRegisters();
int index = 0;
while( index < fRegisters.size() && index < cdiRegisters.length )
{
CRegister register = (CRegister)fRegisters.get( index );
if ( !cdiRegisters[index].equals( register.getCDIVariable() ) )
{
register.setCDIVariable( cdiRegisters[index] );
}
index++;
}
}
protected void resetChangeFlags()
{
if ( fRegisters == null )