From edb29d67ddcc1a524b04532df577ba25fcfd43a4 Mon Sep 17 00:00:00 2001 From: Richard Cordovano Date: Tue, 13 Oct 2015 16:58:49 -0400 Subject: [PATCH] Update method comments for RuinIngestAction --- .../autopsy/ingest/RunIngestAction.java | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/ingest/RunIngestAction.java b/Core/src/org/sleuthkit/autopsy/ingest/RunIngestAction.java index 22c44f9ebc..1e33a2d44b 100755 --- a/Core/src/org/sleuthkit/autopsy/ingest/RunIngestAction.java +++ b/Core/src/org/sleuthkit/autopsy/ingest/RunIngestAction.java @@ -44,7 +44,7 @@ public final class RunIngestAction extends CallableSystemAction implements Prese } /** - * Call getMenuPresenters to create images sublist + * @inheritDoc */ @Override public void performAction() { @@ -52,9 +52,7 @@ public final class RunIngestAction extends CallableSystemAction implements Prese } /** - * Gets the name of this action. This may be presented as an item in a menu. - * - * @return actionName + * @inheritDoc */ @Override public String getName() { @@ -62,9 +60,7 @@ public final class RunIngestAction extends CallableSystemAction implements Prese } /** - * Gets the HelpCtx associated with implementing object - * - * @return HelpCtx or HelpCtx.DEFAULT_HELP + * @inheritDoc */ @Override public HelpCtx getHelpCtx() { @@ -72,10 +68,7 @@ public final class RunIngestAction extends CallableSystemAction implements Prese } /** - * Create a sublist of images updated by RunIngestSubMenu Each has an action - * to perform Ingest Modules on it. - * - * @return the images sublist created. + * @inheritDoc */ @Override public JMenuItem getMenuPresenter() { @@ -85,9 +78,10 @@ public final class RunIngestAction extends CallableSystemAction implements Prese } /** - * This method does nothing, use performAction instead. + * @inheritDoc */ @Override public void actionPerformed(ActionEvent e) { + performAction(); } }