GP-3691: Squelch missing path error in DTR mode.

This commit is contained in:
Dan 2023-08-03 10:39:47 -04:00
parent 9d3d32a8c4
commit fde054623d

View File

@ -567,6 +567,9 @@ public class DebuggerModelProvider extends ComponentProvider implements Saveable
}
protected void checkPath() {
if (Trace.isLegacy(current.getTrace())) {
return;
}
if (objectsTreePanel.getNode(path) == null) {
plugin.getTool().setStatusInfo("No such object at path " + path, true);
}