Bugfixes from release process

This commit is contained in:
evm
2022-12-23 17:04:11 -05:00
parent edef8dadb5
commit 7f76ccf794
2 changed files with 1 additions and 2 deletions

View File

@@ -779,7 +779,7 @@ public class CodeCutGUIPlugin extends Plugin implements DomainObjectListener {
String suggestedName = modNamer.readProcessOutput();
//if name is "unknown" (e.g. modnaming found no repeated strings) don't bother renaming
if (suggestedName.equals("unknown") {
if (suggestedName.equals("unknown")) {
Msg.info(this, "No name guess found for module " + ns.getName() + ", leaving unchanged");
break;
}

View File

@@ -26,7 +26,6 @@ import docking.widgets.table.threaded.TableAddRemoveStrategy;
import ghidra.app.cmd.function.DeleteFunctionCmd;
import ghidra.app.cmd.label.DeleteLabelCmd;
import ghidra.app.cmd.label.RenameLabelCmd;
import ghidra.app.plugin.core.symtable.SymbolTableAddRemoveStrategy;
import ghidra.docking.settings.Settings;
import ghidra.framework.cmd.Command;
import ghidra.framework.cmd.CompoundCmd;