Skip to content
Snippets Groups Projects
Commit 19a4ea6d authored by Richard Cordovano's avatar Richard Cordovano
Browse files

Merge pull request #842 from millmanorama/FILE_DONE_abstract_file

removed unused method fireFileIngestDone(long fileId)
parents 9ab43192 8cbbfe79
No related branches found
No related tags found
No related merge requests found
...@@ -288,7 +288,7 @@ public enum IngestModuleEvent { ...@@ -288,7 +288,7 @@ public enum IngestModuleEvent {
/** /**
* Property change event fired when the ingest of a file is completed. * 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 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, FILE_DONE,
}; };
...@@ -380,15 +380,6 @@ void fireIngestJobCancelled(long ingestJobId) { ...@@ -380,15 +380,6 @@ void fireIngestJobCancelled(long ingestJobId) {
fireIngestEventsThreadPool.submit(new FireIngestEventTask(ingestJobEventPublisher, IngestJobEvent.CANCELLED, ingestJobId, null)); 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. * Fire an ingest event signifying the ingest of a file is completed.
* *
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment