From 8b6ec00cbac9a95bc440c2ab698f4cb37b671da1 Mon Sep 17 00:00:00 2001 From: momo Date: Thu, 5 Nov 2015 16:19:29 -0500 Subject: [PATCH] add comments --- .../org/sleuthkit/autopsy/ingest/DataSourceIngestJob.java | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Core/src/org/sleuthkit/autopsy/ingest/DataSourceIngestJob.java b/Core/src/org/sleuthkit/autopsy/ingest/DataSourceIngestJob.java index 8e43124708..02cbbcc7a7 100644 --- a/Core/src/org/sleuthkit/autopsy/ingest/DataSourceIngestJob.java +++ b/Core/src/org/sleuthkit/autopsy/ingest/DataSourceIngestJob.java @@ -720,7 +720,6 @@ final class DataSourceIngestJob { } } } - } this.fileIngestPipelinesQueue.put(pipeline); } @@ -960,6 +959,13 @@ final class DataSourceIngestJob { this.checkForStageCompleted(); } + /** + * Set the current module name being run and the file name it is running on. + * To be used for more detailed cancelling. + * + * @param moduleName Name of module currently running. + * @param taskName Name of file the module is running on. + */ void setCurrentFileIngestModule(String moduleName, String taskName) { this.currentFileIngestModule = moduleName; this.currentFileIngestTask = taskName;