Modified new case action to be disableable

This commit is contained in:
Eugene Livis 2015-05-28 09:56:29 -04:00
parent a750a970a6
commit 9ca7cd79c3

View File

@ -57,15 +57,4 @@ public final class CaseNewAction extends CallableSystemAction implements CaseNew
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);
}
}