1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-09 18:56:02 +02:00

getName() does not throw any exception

This commit is contained in:
Alain Magloire 2003-03-13 20:11:52 +00:00
parent f5851aaeae
commit 67e7d91a60

View file

@ -98,7 +98,7 @@ public class Variable extends CObject implements ICDIVariable {
/**
* @see org.eclipse.cdt.debug.core.cdi.model.ICDIVariable#getName()
*/
public String getName() throws CDIException {
public String getName() {
return varObj.getName();
}