From 3baefd8e61d5e92060b5bf8c45d799d8a29a5159 Mon Sep 17 00:00:00 2001 From: Kelly Kelly Date: Wed, 24 Feb 2021 15:12:00 -0500 Subject: [PATCH] Fixed typo --- Core/src/org/sleuthkit/autopsy/casemodule/Case.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/src/org/sleuthkit/autopsy/casemodule/Case.java b/Core/src/org/sleuthkit/autopsy/casemodule/Case.java index cdde586f97..0115b3a53c 100644 --- a/Core/src/org/sleuthkit/autopsy/casemodule/Case.java +++ b/Core/src/org/sleuthkit/autopsy/casemodule/Case.java @@ -469,7 +469,7 @@ public class Case { } @Subscribe - public void publishOsAccountChangedEvent(OsAccountsCreationEvent event) { + public void publishOsAccountChangedEvent(OsAccountsUpdateEvent event) { for(OsAccount account: event.getOsAcounts()) { eventPublisher.publish(new OsAccountChangedEvent(account)); }