From 1b1a68a998b8d5bb813cefb60a2c38cae6151001 Mon Sep 17 00:00:00 2001 From: millmanorama Date: Wed, 7 Nov 2018 12:28:09 +0100 Subject: [PATCH] fix comments and method name --- Core/src/org/sleuthkit/autopsy/timeline/ui/ViewFrame.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/timeline/ui/ViewFrame.java b/Core/src/org/sleuthkit/autopsy/timeline/ui/ViewFrame.java index d87f3bbb8f..05ead27080 100644 --- a/Core/src/org/sleuthkit/autopsy/timeline/ui/ViewFrame.java +++ b/Core/src/org/sleuthkit/autopsy/timeline/ui/ViewFrame.java @@ -511,13 +511,13 @@ final public class ViewFrame extends BorderPane { * NOTE: This ViewFrame must be registered with the filteredEventsModel's * EventBus in order for this handler to be invoked. * - * @param event The DataSourceAnalysisCompletedEvent to handle. + * @param event The CacheInvalidatedEvent to handle. */ @Subscribe @NbBundle.Messages({ "# {0} - datasource name", "ViewFrame.notification.analysisComplete=The event data has changed, the visualization may be out of date."}) - public void handleEventAdded(FilteredEventsModel.CacheInvalidatedEvent event) { + public void handleCacheInvalidated(FilteredEventsModel.CacheInvalidatedEvent event) { Platform.runLater(() -> { if (hostedView.needsRefresh() == false) { hostedView.setNeedsRefresh();