From c6e33cfb83cedcf0f6ca073adb984d6fadb2a879 Mon Sep 17 00:00:00 2001 From: Greg DiCristofaro Date: Wed, 10 Jun 2020 10:55:05 -0400 Subject: [PATCH] formatting --- .../actionhelpers/ExtractActionHelper.java | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/directorytree/actionhelpers/ExtractActionHelper.java b/Core/src/org/sleuthkit/autopsy/directorytree/actionhelpers/ExtractActionHelper.java index b9de08d20b..fa63908246 100644 --- a/Core/src/org/sleuthkit/autopsy/directorytree/actionhelpers/ExtractActionHelper.java +++ b/Core/src/org/sleuthkit/autopsy/directorytree/actionhelpers/ExtractActionHelper.java @@ -197,7 +197,8 @@ public class ExtractActionHelper { * @param event ActionEvent whose source will be used for * centering popup dialogs. * @param fileExtractionTasks List of file extraction tasks. - * @param destName Name of the destination used for progress messages. + * @param destName Name of the destination used for progress + * messages. */ private void runExtractionTasks(ActionEvent event, List fileExtractionTasks, String destName) { @@ -278,7 +279,8 @@ public class ExtractActionHelper { * Create an instance of the FileExtracter. * * @param extractionTasks List of file extraction tasks. - * @param destName Name of the destination used for progress messages. + * @param destName Name of the destination used for progress + * messages. */ FileExtracter(List extractionTasks, String destName) { this.extractionTasks = extractionTasks; @@ -316,10 +318,10 @@ public class ExtractActionHelper { for (int i = 0; i < this.extractionTasks.size(); i++) { FileExtractionTask task = this.extractionTasks.get(i); progress.progress(Bundle.ExtractActionHelper_progress_fileExtracting(task.destination.getName())); - + ContentUtils.ExtractFscContentVisitor.extract(task.source, task.destination, null, this); } - + return null; }