diff --git a/Core/src/org/sleuthkit/autopsy/ingest/IngestManager.java b/Core/src/org/sleuthkit/autopsy/ingest/IngestManager.java index 008bf410dbf8d02ab3df558193dcc2e0cf8dc5e2..3c1e23cb83003497711e7ec46a71f80a2b23733c 100644 --- a/Core/src/org/sleuthkit/autopsy/ingest/IngestManager.java +++ b/Core/src/org/sleuthkit/autopsy/ingest/IngestManager.java @@ -288,7 +288,7 @@ public enum IngestModuleEvent { /** * Property change event fired when the ingest of a file is completed. * The old value of the PropertyChangeEvent is the Autopsy object ID of - * the file. The new value is null or an AbstractFile for that ID. + * the file. The new value is the AbstractFile for that ID. */ FILE_DONE, }; @@ -380,15 +380,6 @@ void fireIngestJobCancelled(long ingestJobId) { fireIngestEventsThreadPool.submit(new FireIngestEventTask(ingestJobEventPublisher, IngestJobEvent.CANCELLED, ingestJobId, null)); } - /** - * Fire an ingest event signifying the ingest of a file is completed. - * - * @param fileId The object id of file. - */ - void fireFileIngestDone(long fileId) { - fireIngestEventsThreadPool.submit(new FireIngestEventTask(ingestModuleEventPublisher, IngestModuleEvent.FILE_DONE, fileId, null)); - } - /** * Fire an ingest event signifying the ingest of a file is completed. *