From 8cbbfe79b67635cc73f3a3bcc7d5bfb68d4cb86f Mon Sep 17 00:00:00 2001 From: jmillman <jmillman@basistech.com> Date: Wed, 30 Jul 2014 17:39:22 -0400 Subject: [PATCH] removed unused method fireFileIngestDone(long fileId) --- .../org/sleuthkit/autopsy/ingest/IngestManager.java | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/ingest/IngestManager.java b/Core/src/org/sleuthkit/autopsy/ingest/IngestManager.java index 008bf410db..3c1e23cb83 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. * -- GitLab