mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 22:52:11 +02:00
2004-11-16 Alain Magloire
Optimize things by providing a new method ICDIRegisterGroup.hasRegisters(); * cdi/org/eclipse/cdt/debug/core/cdi/model/RegisterGroup.java
This commit is contained in:
parent
334882d258
commit
bcc527d28a
2 changed files with 12 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2004-11-16 Alain Magloire
|
||||||
|
Optimize things by providing a new method
|
||||||
|
ICDIRegisterGroup.hasRegisters();
|
||||||
|
* cdi/org/eclipse/cdt/debug/core/cdi/model/RegisterGroup.java
|
||||||
|
|
||||||
2004-11-16 Alain Magloire
|
2004-11-16 Alain Magloire
|
||||||
Remove some warnings and use the new Launch key
|
Remove some warnings and use the new Launch key
|
||||||
to decide whether or not to use pseudo tty.
|
to decide whether or not to use pseudo tty.
|
||||||
|
|
|
@ -49,4 +49,11 @@ public class RegisterGroup extends CObject implements ICDIRegisterGroup {
|
||||||
return fName;
|
return fName;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* (non-Javadoc)
|
||||||
|
* @see org.eclipse.cdt.debug.core.cdi.model.ICDIRegisterGroup#hasRegisters()
|
||||||
|
*/
|
||||||
|
public boolean hasRegisters() throws CDIException {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue