From 5b4930ef5dc665ea09da7c5b706ea618ffc2cfa4 Mon Sep 17 00:00:00 2001 From: Richard Cordovano Date: Mon, 28 Oct 2019 16:45:30 -0400 Subject: [PATCH] Merge in new data source deletion code from McKinnon --- .../autopsy/casemodule/events/DataSourceDeletedEvent.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/src/org/sleuthkit/autopsy/casemodule/events/DataSourceDeletedEvent.java b/Core/src/org/sleuthkit/autopsy/casemodule/events/DataSourceDeletedEvent.java index 5550ad9313..3a0372fa94 100644 --- a/Core/src/org/sleuthkit/autopsy/casemodule/events/DataSourceDeletedEvent.java +++ b/Core/src/org/sleuthkit/autopsy/casemodule/events/DataSourceDeletedEvent.java @@ -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; }