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:
parent
f001078afe
commit
a8a36358d9
1 changed files with 3 additions and 1 deletions
|
@ -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);
|
||||||
|
|
Loading…
Add table
Reference in a new issue