GP-4390 Collapse DomainObject Undoable interfaces and refactor Command processing.

This commit is contained in:
ghidra1 2024-03-08 12:49:50 -05:00
parent 136b933af2
commit 445494ba25
214 changed files with 2862 additions and 3813 deletions

View file

@ -107,7 +107,7 @@ public class AutoAnalysisPluginScreenShots extends GhidraScreenShotGenerator {
// Inner Classes
//==================================================================================================
class TestBackgroundCommand extends BackgroundCommand {
class TestBackgroundCommand extends BackgroundCommand<DomainObject> {
private CountDownLatch start;
private CountDownLatch end;

View file

@ -309,7 +309,7 @@ public class ToolScreenShots extends GhidraScreenShotGenerator {
return helpTopicDirs;
}
private class DummyBackgroundCommand extends BackgroundCommand {
private static class DummyBackgroundCommand extends BackgroundCommand<DomainObject> {
public DummyBackgroundCommand() {
super("Dummy", true, true, false);