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. * @param dataSourceId The object ID of the data source that was deleted.
*/ */
public DataSourceDeletedEvent(Long dataSourceId) { 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; this.dataSourceID = dataSourceId;
} }