From ff0f83271e5d6881d01b125ed223b1aaebdf633a Mon Sep 17 00:00:00 2001 From: Dan <46821332+nsadeveloper789@users.noreply.github.com> Date: Thu, 25 Jun 2026 12:10:21 +0000 Subject: [PATCH] GP-7004: Format and certify. --- .../core/debug/service/modules/ProgramModuleIndexer.java | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Ghidra/Debug/Debugger/src/main/java/ghidra/app/plugin/core/debug/service/modules/ProgramModuleIndexer.java b/Ghidra/Debug/Debugger/src/main/java/ghidra/app/plugin/core/debug/service/modules/ProgramModuleIndexer.java index d1117f5048..bac5155cfc 100644 --- a/Ghidra/Debug/Debugger/src/main/java/ghidra/app/plugin/core/debug/service/modules/ProgramModuleIndexer.java +++ b/Ghidra/Debug/Debugger/src/main/java/ghidra/app/plugin/core/debug/service/modules/ProgramModuleIndexer.java @@ -35,9 +35,7 @@ import ghidra.trace.model.Lifespan; import ghidra.trace.model.modules.TraceModule; import ghidra.util.Msg; import ghidra.util.exception.CancelledException; -import ghidra.util.task.CancelledListener; -import ghidra.util.task.Task; -import ghidra.util.task.TaskMonitor; +import ghidra.util.task.*; // TODO: Consider making this a front-end plugin? public class ProgramModuleIndexer implements DomainFolderChangeListener { @@ -81,8 +79,7 @@ public class ProgramModuleIndexer implements DomainFolderChangeListener { // TODO: Note language and prefer those from the same processor? // Will get difficult with new OBTR, since I'd need a platform // There's also the WoW64 issue.... - protected record IndexEntry(String name, String dfID, NameSource source) { - } + protected record IndexEntry(String name, String dfID, NameSource source) {} protected class ModuleChangeListener implements DomainObjectListener, DomainObjectClosedListener {