removed unused method fireFileIngestDone(long fileId)

This commit is contained in:
jmillman 2014-07-30 17:39:22 -04:00
parent f8fe5694ef
commit 8cbbfe79b6

View File

@ -288,7 +288,7 @@ public class IngestManager {
/**
* 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 @@ public class IngestManager {
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.
*