From db40bf6104bd93f169a075a87f3cc0b75989537d Mon Sep 17 00:00:00 2001 From: momo Date: Wed, 29 Jul 2015 15:53:46 -0400 Subject: [PATCH] change init name --- .../photoreccarver/PhotoRecCarverFileIngestModule.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/modules/photoreccarver/PhotoRecCarverFileIngestModule.java b/Core/src/org/sleuthkit/autopsy/modules/photoreccarver/PhotoRecCarverFileIngestModule.java index 31d3d62b62..1ab4204caf 100755 --- a/Core/src/org/sleuthkit/autopsy/modules/photoreccarver/PhotoRecCarverFileIngestModule.java +++ b/Core/src/org/sleuthkit/autopsy/modules/photoreccarver/PhotoRecCarverFileIngestModule.java @@ -99,7 +99,7 @@ final class PhotoRecCarverFileIngestModule implements FileIngestModule { return totals; } - private static synchronized void initTotalIngestJob(long ingestJobId) { + private static synchronized void initTotalsForIngestJob(long ingestJobId) { IngestJobTotals totals = new PhotoRecCarverFileIngestModule.IngestJobTotals(); totalsForIngestJobs.put(ingestJobId, totals); } @@ -143,7 +143,7 @@ final class PhotoRecCarverFileIngestModule implements FileIngestModule { PhotoRecCarverFileIngestModule.pathsByJob.put(this.jobId, new WorkingPaths(outputDirPath, tempDirPath)); // Initialize job totals - initTotalIngestJob(jobId); + initTotalsForIngestJob(jobId); } catch (SecurityException | IOException | UnsupportedOperationException ex) { throw new IngestModule.IngestModuleException(NbBundle.getMessage(this.getClass(), "cannotCreateOutputDir.message", ex.getLocalizedMessage())); }