From 94845cbdfbe613d0a1395eeecde9a972bbf2b99b Mon Sep 17 00:00:00 2001 From: Richard Cordovano Date: Thu, 6 Nov 2014 21:49:30 -0500 Subject: [PATCH] Replace some deprecated method calls --- .../sleuthkit/autopsy/scalpel/ScalpelCarverIngestModule.java | 2 +- .../thunderbirdparser/ThunderbirdMboxFileIngestModule.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ScalpelCarver/src/org/sleuthkit/autopsy/scalpel/ScalpelCarverIngestModule.java b/ScalpelCarver/src/org/sleuthkit/autopsy/scalpel/ScalpelCarverIngestModule.java index 1e52dec332..7101c71dc4 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.scheduleFiles(new ArrayList(carvedFiles)); + context.addFilesToJob(new ArrayList(carvedFiles)); return ProcessResult.OK; } diff --git a/thunderbirdparser/src/org/sleuthkit/autopsy/thunderbirdparser/ThunderbirdMboxFileIngestModule.java b/thunderbirdparser/src/org/sleuthkit/autopsy/thunderbirdparser/ThunderbirdMboxFileIngestModule.java index 11ec6905a9..d86fc5589f 100644 --- a/thunderbirdparser/src/org/sleuthkit/autopsy/thunderbirdparser/ThunderbirdMboxFileIngestModule.java +++ b/thunderbirdparser/src/org/sleuthkit/autopsy/thunderbirdparser/ThunderbirdMboxFileIngestModule.java @@ -289,7 +289,7 @@ public final class ThunderbirdMboxFileIngestModule implements FileIngestModule { services.fireModuleContentEvent(new ModuleContentEvent(derived)); } } - context.scheduleFiles(derivedFiles); + context.addFilesToJob(derivedFiles); services.fireModuleDataEvent(new ModuleDataEvent(EmailParserModuleFactory.getModuleName(), BlackboardArtifact.ARTIFACT_TYPE.TSK_EMAIL_MSG)); }