Skip to content

Commit

Permalink
GP-4485: Re-configure default Debugger.tool for Trace RMI
Browse files Browse the repository at this point in the history
  • Loading branch information
nsadeveloper789 committed Apr 15, 2024
1 parent 636dc6f commit 3b21d0b
Show file tree
Hide file tree
Showing 6 changed files with 264 additions and 868 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
""",
category = PluginCategoryNames.DEBUGGER,
packageName = DebuggerPluginPackage.NAME,
status = PluginStatus.STABLE,
status = PluginStatus.RELEASED,
eventsConsumed = {
TraceActivatedPluginEvent.class,
TraceInactiveCoordinatesPluginEvent.class,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
""",
category = PluginCategoryNames.DEBUGGER,
packageName = DebuggerPluginPackage.NAME,
status = PluginStatus.UNSTABLE,
status = PluginStatus.RELEASED,
eventsConsumed = {
ProgramActivatedPluginEvent.class,
ProgramClosedPluginEvent.class,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
description = "GUI to browse objects recorded to the trace",
category = PluginCategoryNames.DEBUGGER,
packageName = DebuggerPluginPackage.NAME,
status = PluginStatus.STABLE,
status = PluginStatus.RELEASED,
eventsConsumed = {
TraceActivatedPluginEvent.class,
TraceClosedPluginEvent.class,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ protected String computePreferenceKey() {
if (rootSchema == null) {
return DEFAULT_PREF_KEY;
}
return rootSchema + ":" + schemas
return rootSchema.getName() + ":" + schemas
.stream()
.map(s -> s.getName().toString())
.collect(Collectors.joining(",")) +
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
public class DebuggerObjectsPlugin extends AbstractDebuggerPlugin
implements ObjectUpdateService, CollectionChangeListener<DebuggerObjectModel> {

static String TITLE_PROVIDER_TARGETS = "Debugger Objects";
static final String TITLE_PROVIDER_TARGETS = "Debugger Objects";

@AutoServiceConsumed
protected DebuggerInterpreterService interpreterService;
Expand Down
Loading

0 comments on commit 3b21d0b

Please sign in to comment.