mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-03 09:49:23 +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) {
|
||||
ObjectNode node = nodeMap.get(path(container));
|
||||
if (node == null) {
|
||||
if (path(container) != null) {
|
||||
Msg.warn(this, "Missing node: " + path(container));
|
||||
}
|
||||
return new ArrayList<>();
|
||||
}
|
||||
|
||||
|
|
|
@ -88,7 +88,6 @@ public class DefaultTraceRecorder implements TraceRecorder {
|
|||
this.objectManager = new TraceObjectManager(target, mapper, this);
|
||||
|
||||
trace.addConsumer(this);
|
||||
System.err.println("constructor for DefaultTraceRecorder complete");
|
||||
}
|
||||
|
||||
/*---------------- OBJECT MANAGER METHODS -------------------*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue