Merge remote-tracking branch 'origin/GP-2452_Dan_traceVersionErrorHandling'

This commit is contained in:
Ryan Kurtz 2022-09-09 12:20:54 -04:00
commit 03a456f0c9
2 changed files with 4 additions and 2 deletions

View file

@ -692,8 +692,10 @@ public class DebuggerTraceManagerServicePlugin extends Plugin
return trace;
}
catch (VersionException e) {
// TODO: Support upgrading
e = new VersionException(e.getVersionIndicator(), false).combine(e);
VersionExceptionHandler.showVersionError(null, file.getName(), file.getContentType(),
"Open Trace", e);
"Open", e);
return null;
}
catch (IOException e) {

View file

@ -312,7 +312,7 @@ public class DBTraceContentHandler extends DBContentHandler {
@Override
public String getDefaultToolName() {
return "Debugger"; // TODO: Actually make this tool
return "Debugger";
}
@Override