1
0
mirror of https://github.com/elisspace/autopsy.git synced 2026-09-03 05:25:53 +00:00

Merge in new data source deletion code from McKinnon

This commit is contained in:
Richard Cordovano
2019-10-28 16:45:30 -04:00
parent 0573c4cb8e
commit 5b4930ef5d

View File

@@ -37,7 +37,7 @@ public class DataSourceDeletedEvent extends AutopsyEvent implements Serializable
* @param dataSourceId The object ID of the data source that was deleted.
*/
public DataSourceDeletedEvent(Long dataSourceId) {
super(Case.Events.DATA_SOURCE_DELETED.toString(), null, dataSourceId);
super(Case.Events.DATA_SOURCE_DELETED.toString(), dataSourceId, null);
this.dataSourceID = dataSourceId;
}