1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

Some cleanup fixes for 225650.

This commit is contained in:
Randy Rohrbach 2009-03-12 19:13:01 +00:00
parent 3b68c43a8f
commit 5e47877afa

View file

@ -424,13 +424,6 @@ public class RegisterVMNode extends AbstractExpressionVMNode
protected void handleCompleted() {
if (isSuccess()) {
fillRegisterDataProperties(update, getData());
update.setProperty(PROP_NAME, getData().getName());
update.setProperty(IRegisterVMConstants.PROP_DESCRIPTION, getData().getDescription());
update.setProperty(IRegisterVMConstants.PROP_IS_FLOAT, getData().isFloat());
update.setProperty(IRegisterVMConstants.PROP_IS_READABLE, getData().isReadable());
update.setProperty(IRegisterVMConstants.PROP_IS_READONCE, getData().isReadOnce());
update.setProperty(IRegisterVMConstants.PROP_IS_WRITEABLE, getData().isWriteable());
update.setProperty(IRegisterVMConstants.PROP_IS_WRITEONCE, getData().isWriteOnce());
} else {
update.setStatus(getStatus());
}
@ -456,7 +449,6 @@ public class RegisterVMNode extends AbstractExpressionVMNode
update.setProperty(IRegisterVMConstants.PROP_IS_WRITEABLE, data.isWriteable());
update.setProperty(IRegisterVMConstants.PROP_IS_WRITEONCE, data.isWriteOnce());
}
/*
* (non-Javadoc)