diff --git a/Core/src/org/sleuthkit/autopsy/ingest/FileIngestPipeline.java b/Core/src/org/sleuthkit/autopsy/ingest/FileIngestPipeline.java index 3904ddd529..b7f2076c71 100644 --- a/Core/src/org/sleuthkit/autopsy/ingest/FileIngestPipeline.java +++ b/Core/src/org/sleuthkit/autopsy/ingest/FileIngestPipeline.java @@ -66,12 +66,6 @@ final class FileIngestPipeline extends IngestTaskPipeline { try { file = task.getFile(); } catch (TskCoreException ex) { - /* - * In practice, the file should have already been lazily looked up - * and cached in the file task when the task was enqueued by the - * ingest tasks scheduler. Therefore there is no case database query - * here and there should be no TskCoreException. - */ throw new IngestTaskPipelineException(String.format("Failed to get file (file objId = %d)", task.getFileId()), ex); //NON-NLS } try { diff --git a/Core/src/org/sleuthkit/autopsy/ingest/IngestManager.java b/Core/src/org/sleuthkit/autopsy/ingest/IngestManager.java index 2f00900f20..37d0eab54f 100644 --- a/Core/src/org/sleuthkit/autopsy/ingest/IngestManager.java +++ b/Core/src/org/sleuthkit/autopsy/ingest/IngestManager.java @@ -769,9 +769,8 @@ public class IngestManager implements IngestProgressSnapshotProvider { } /** - * Updates the ingest progress snapshot for data source ingest task. This - * method should be called every time a new ingest module starts working on - * the task. + * Updates the ingest progress snapshot for a data source level ingest task + * when a new ingest module starts working on the task. * * @param task The data source ingest task. * @param currentModuleName The display name of the currently processing @@ -790,9 +789,8 @@ public class IngestManager implements IngestProgressSnapshotProvider { } /** - * Updates the ingest progress snapshot for data source ingest task. This - * method should be called every time a new ingest module starts working on - * the task. + * Updates the ingest progress snapshot for a file ingest task when a new + * ingest module starts working on the task. * * @param task The file ingest task. * @param currentModuleName The display name of the currently processing