diff --git a/Experimental/src/org/sleuthkit/autopsy/experimental/autoingest/Bundle.properties-MERGED b/Experimental/src/org/sleuthkit/autopsy/experimental/autoingest/Bundle.properties-MERGED index 25f30ce941..7cf0eee59d 100755 --- a/Experimental/src/org/sleuthkit/autopsy/experimental/autoingest/Bundle.properties-MERGED +++ b/Experimental/src/org/sleuthkit/autopsy/experimental/autoingest/Bundle.properties-MERGED @@ -198,7 +198,6 @@ DeleteCaseTask.progress.deletingResourcesLockNode=Deleting case resources znode. DeleteCaseTask.progress.gettingManifestPaths=Getting manifest file paths... # {0} - manifest file path DeleteCaseTask.progress.lockingManifest=Locking manifest file {0}... -DeleteCaseTask.progress.Manifest=Deleting manifest file {0}... DeleteCaseTask.progress.openingCaseDatabase=Opening the case database... DeleteCaseTask.progress.openingCaseMetadataFile=Opening case metadata file... # {0} - manifest file path diff --git a/Experimental/src/org/sleuthkit/autopsy/experimental/autoingest/CasesDashboardCustomizer.java b/Experimental/src/org/sleuthkit/autopsy/experimental/autoingest/CasesDashboardCustomizer.java index 3b6482fc4c..dbe8b507d1 100755 --- a/Experimental/src/org/sleuthkit/autopsy/experimental/autoingest/CasesDashboardCustomizer.java +++ b/Experimental/src/org/sleuthkit/autopsy/experimental/autoingest/CasesDashboardCustomizer.java @@ -39,7 +39,7 @@ final class CasesDashboardCustomizer implements MultiUserCaseBrowserCustomizer { private final DeleteCaseAction deleteCaseAction; private final DeleteCaseInputAction deleteCaseInputAction; private final DeleteCaseOutputAction deleteCaseOutputAction; - private final DeleteCaseInputAndOutputAction deleteAllAction; + private final DeleteCaseInputAndOutputAction deleteCaseInputAndOutputAction; /** * Constructs a customizer for the multi-user case browser panel used in the @@ -57,7 +57,7 @@ final class CasesDashboardCustomizer implements MultiUserCaseBrowserCustomizer { deleteCaseAction = new DeleteCaseAction(); deleteCaseInputAction = new DeleteCaseInputAction(); deleteCaseOutputAction = new DeleteCaseOutputAction(); - deleteAllAction = new DeleteCaseInputAndOutputAction(); + deleteCaseInputAndOutputAction = new DeleteCaseInputAndOutputAction(); } @Override @@ -96,7 +96,7 @@ final class CasesDashboardCustomizer implements MultiUserCaseBrowserCustomizer { if (CasesDashboardCustomizer.extendedFeaturesAreEnabled()) { actions.add(deleteCaseInputAction); actions.add(deleteCaseOutputAction); - actions.add(deleteAllAction); + actions.add(deleteCaseInputAndOutputAction); } else { actions.add(deleteCaseAction); }