diff --git a/Core/src/org/sleuthkit/autopsy/ingest/IngestJobContext.java b/Core/src/org/sleuthkit/autopsy/ingest/IngestJobContext.java index b23077856d..eb30235c62 100755 --- a/Core/src/org/sleuthkit/autopsy/ingest/IngestJobContext.java +++ b/Core/src/org/sleuthkit/autopsy/ingest/IngestJobContext.java @@ -60,7 +60,7 @@ public final class IngestJobContext { * * @param files The files to be processed by the file ingest pipeline. */ - public void addFiles(List files) { + public void scheduleFiles(List files) { for (AbstractFile file : files) { try { FileIngestTaskScheduler.getInstance().scheduleTask(ingestJob, file); diff --git a/ScalpelCarver/src/org/sleuthkit/autopsy/scalpel/ScalpelCarverIngestModule.java b/ScalpelCarver/src/org/sleuthkit/autopsy/scalpel/ScalpelCarverIngestModule.java index 01e921cbb0..1e52dec332 100644 --- a/ScalpelCarver/src/org/sleuthkit/autopsy/scalpel/ScalpelCarverIngestModule.java +++ b/ScalpelCarver/src/org/sleuthkit/autopsy/scalpel/ScalpelCarverIngestModule.java @@ -223,7 +223,7 @@ class ScalpelCarverIngestModule implements FileIngestModule { } // reschedule carved files - context.addFiles(new ArrayList(carvedFiles)); + context.scheduleFiles(new ArrayList(carvedFiles)); return ProcessResult.OK; }