diff --git a/Ghidra/Features/BSim/src/main/java/ghidra/features/bsim/query/ingest/BulkSignatures.java b/Ghidra/Features/BSim/src/main/java/ghidra/features/bsim/query/ingest/BulkSignatures.java index 62cd39d4e4..ea8944721c 100755 --- a/Ghidra/Features/BSim/src/main/java/ghidra/features/bsim/query/ingest/BulkSignatures.java +++ b/Ghidra/Features/BSim/src/main/java/ghidra/features/bsim/query/ingest/BulkSignatures.java @@ -465,13 +465,11 @@ public class BulkSignatures implements AutoCloseable { if (response == null) { throw new IOException("Unable to drop database: " + querydb.getLastError().message); } + if (response.dropSuccessful) { + Msg.info(this, "Successfully dropped database \"" + command.databaseName + "\""); + } else { - if (response.dropSuccessful) { - Msg.info(this, "Successfully dropped database \"" + command.databaseName + "\""); - } - else { - Msg.error(this, "Unable to drop database: " + response.errorMessage); - } + Msg.error(this, "Unable to drop database: " + response.errorMessage); } }