From 9ca7cd79c32f0a388c84da1dc7925829931e7776 Mon Sep 17 00:00:00 2001 From: Eugene Livis Date: Thu, 28 May 2015 09:56:29 -0400 Subject: [PATCH] Modified new case action to be disableable --- .../sleuthkit/autopsy/casemodule/CaseNewAction.java | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/casemodule/CaseNewAction.java b/Core/src/org/sleuthkit/autopsy/casemodule/CaseNewAction.java index 3303f4889c..9ed4e59d14 100644 --- a/Core/src/org/sleuthkit/autopsy/casemodule/CaseNewAction.java +++ b/Core/src/org/sleuthkit/autopsy/casemodule/CaseNewAction.java @@ -56,16 +56,5 @@ public final class CaseNewAction extends CallableSystemAction implements CaseNew @Override public HelpCtx getHelpCtx() { return HelpCtx.DEFAULT_HELP; - } - - /** - * Set this action to be enabled/disabled - * - * @param value whether to enable this action or not - */ - @Override - public void setEnabled(boolean value) { - super.setEnabled(value); - //toolbarButton.setEnabled(value); - } + } }