diff --git a/Core/src/org/sleuthkit/autopsy/modules/photoreccarver/Bundle.properties b/Core/src/org/sleuthkit/autopsy/modules/photoreccarver/Bundle.properties index 2dbb6d3353..2bb4e97908 100755 --- a/Core/src/org/sleuthkit/autopsy/modules/photoreccarver/Bundle.properties +++ b/Core/src/org/sleuthkit/autopsy/modules/photoreccarver/Bundle.properties @@ -17,5 +17,4 @@ PhotoRecIngestModule.NotEnoughDiskSpace=Not enough disk space to save unallocate PhotoRecIngestModule.complete.numberOfCarved=Number of Files Carved\: PhotoRecIngestModule.complete.totalWritetime=Total Time To Write To Disk PhotoRecIngestModule.complete.totalParsetime=Total Parsing Time -PhotoRecIngestModule.complete.recFiles=List of Recovered Files\: PhotoRecIngestModule.complete.photoRecResults=PhotoRec Results \ No newline at end of file diff --git a/Core/src/org/sleuthkit/autopsy/modules/photoreccarver/PhotoRecCarverFileIngestModule.java b/Core/src/org/sleuthkit/autopsy/modules/photoreccarver/PhotoRecCarverFileIngestModule.java index 255b8ad899..7311afc414 100755 --- a/Core/src/org/sleuthkit/autopsy/modules/photoreccarver/PhotoRecCarverFileIngestModule.java +++ b/Core/src/org/sleuthkit/autopsy/modules/photoreccarver/PhotoRecCarverFileIngestModule.java @@ -82,7 +82,6 @@ final class PhotoRecCarverFileIngestModule implements FileIngestModule { private File executableFile; private IngestServices services; private long jobId; - private List carvedItems; private static class IngestJobTotals { @@ -243,7 +242,7 @@ final class PhotoRecCarverFileIngestModule implements FileIngestModule { // Now that we've cleaned up the folders and data files, parse the xml output file to add carved items into the database long calcstart = System.currentTimeMillis(); PhotoRecCarverOutputParser parser = new PhotoRecCarverOutputParser(outputDirPath); - carvedItems = parser.parse(newAuditFile, id, file); + List carvedItems = parser.parse(newAuditFile, id, file); long calcdelta = (System.currentTimeMillis() - calcstart); totals.totalParsetime.addAndGet(calcdelta); if (carvedItems != null) { // if there were any results from carving, add the unallocated carving event to the reports list. @@ -292,15 +291,6 @@ final class PhotoRecCarverFileIngestModule implements FileIngestModule { .append("").append(jobTotals.totalParsetime.get()).append("\n"); //NON-NLS detailsSb.append(""); //NON-NLS - detailsSb.append("

") //NON-NLS - .append(NbBundle.getMessage(this.getClass(), "PhotoRecIngestModule.complete.recFiles")) - .append("

\n"); //NON-NLS - services.postMessage(IngestMessage.createMessage( IngestMessage.MessageType.INFO, PhotoRecCarverIngestModuleFactory.getModuleName(),