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:
parent
640ec6e2e6
commit
cecdca34fd
4 changed files with 0 additions and 26 deletions
|
@ -22,11 +22,6 @@ public class CArrayEntryVariable extends CModificationVariable
|
||||||
*/
|
*/
|
||||||
private int fIndex;
|
private int fIndex;
|
||||||
|
|
||||||
/**
|
|
||||||
* The type name of this variable. Cached lazily.
|
|
||||||
*/
|
|
||||||
private String fReferenceTypeName = null;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor for CArrayEntryVariable.
|
* Constructor for CArrayEntryVariable.
|
||||||
* @param target
|
* @param target
|
||||||
|
|
|
@ -360,10 +360,6 @@ public class CDebugTarget extends CDebugElement
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void disableAddressBreakpoints()
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
private boolean isTargetBreakpoint( IBreakpoint bp )
|
private boolean isTargetBreakpoint( IBreakpoint bp )
|
||||||
{
|
{
|
||||||
IProject project = bp.getMarker().getResource().getProject();
|
IProject project = bp.getMarker().getResource().getProject();
|
||||||
|
|
|
@ -24,8 +24,6 @@ import org.eclipse.debug.core.model.IValue;
|
||||||
*/
|
*/
|
||||||
public abstract class CModificationVariable extends CVariable
|
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.
|
* Constructor for CModificationVariable.
|
||||||
* @param parent
|
* @param parent
|
||||||
|
|
|
@ -107,21 +107,6 @@ public class CRegisterGroup extends CDebugElement implements IRegisterGroup
|
||||||
return results;
|
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()
|
protected void resetChangeFlags()
|
||||||
{
|
{
|
||||||
if ( fRegisters == null )
|
if ( fRegisters == null )
|
||||||
|
|
Loading…
Add table
Reference in a new issue