1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

[219026] Got rid of "null" at end of frame label if address is not available.

This commit is contained in:
Pawel Piech 2008-02-14 22:00:22 +00:00
parent f001078afe
commit a8a36358d9

View file

@ -262,7 +262,9 @@ public class StackFramesVMNode extends AbstractDMVMNode
} }
// Add the address // Add the address
label.append(dmData.getAddress()); if (dmData.getAddress() != null) {
label.append(dmData.getAddress());
}
// Set the label to the result listener // Set the label to the result listener
update.setLabel(label.toString(), 0); update.setLabel(label.toString(), 0);