1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42: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:
Alain Magloire 2004-11-17 03:53:05 +00:00
parent 334882d258
commit bcc527d28a
2 changed files with 12 additions and 0 deletions

View file

@ -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
Remove some warnings and use the new Launch key
to decide whether or not to use pseudo tty.

View file

@ -49,4 +49,11 @@ public class RegisterGroup extends CObject implements ICDIRegisterGroup {
return fName;
}
/* (non-Javadoc)
* @see org.eclipse.cdt.debug.core.cdi.model.ICDIRegisterGroup#hasRegisters()
*/
public boolean hasRegisters() throws CDIException {
return true;
}
}