mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-03 17:59:46 +02:00
debugger: unnecessary warnings
This commit is contained in:
parent
b779f318d6
commit
2bf42c8e20
2 changed files with 3 additions and 2 deletions
|
@ -316,7 +316,9 @@ public class ObjectTree implements ObjectPane {
|
||||||
public List<GTreeNode> update(ObjectContainer container) {
|
public List<GTreeNode> update(ObjectContainer container) {
|
||||||
ObjectNode node = nodeMap.get(path(container));
|
ObjectNode node = nodeMap.get(path(container));
|
||||||
if (node == null) {
|
if (node == null) {
|
||||||
Msg.warn(this, "Missing node: " + path(container));
|
if (path(container) != null) {
|
||||||
|
Msg.warn(this, "Missing node: " + path(container));
|
||||||
|
}
|
||||||
return new ArrayList<>();
|
return new ArrayList<>();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -88,7 +88,6 @@ public class DefaultTraceRecorder implements TraceRecorder {
|
||||||
this.objectManager = new TraceObjectManager(target, mapper, this);
|
this.objectManager = new TraceObjectManager(target, mapper, this);
|
||||||
|
|
||||||
trace.addConsumer(this);
|
trace.addConsumer(this);
|
||||||
System.err.println("constructor for DefaultTraceRecorder complete");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*---------------- OBJECT MANAGER METHODS -------------------*/
|
/*---------------- OBJECT MANAGER METHODS -------------------*/
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue