diff --git a/Core/src/org/sleuthkit/autopsy/timeline/datamodel/eventtype/EventType.java b/Core/src/org/sleuthkit/autopsy/timeline/datamodel/eventtype/EventType.java index 54bd488d8f..0758d804ec 100644 --- a/Core/src/org/sleuthkit/autopsy/timeline/datamodel/eventtype/EventType.java +++ b/Core/src/org/sleuthkit/autopsy/timeline/datamodel/eventtype/EventType.java @@ -32,7 +32,7 @@ import org.sleuthkit.autopsy.timeline.zooming.EventTypeZoomLevel; */ public interface EventType { - final static List allTypes = RootEventType.getInstance().getSubTypesRecusive(); + final static List allTypes = RootEventType.getInstance().getSubTypesRecusive(); static Comparator getComparator() { return Comparator.comparing(EventType.allTypes::indexOf); @@ -47,7 +47,7 @@ public interface EventType { } } - default List getSubTypesRecusive() { + default List getSubTypesRecusive() { ArrayList flatList = new ArrayList<>(); for (EventType et : getSubTypes()) { @@ -56,8 +56,6 @@ public interface EventType { } return flatList; } - - /** * @return the color used to represent this event type visually diff --git a/Core/src/org/sleuthkit/autopsy/timeline/ui/AbstractTimeLineView.java b/Core/src/org/sleuthkit/autopsy/timeline/ui/AbstractTimeLineView.java index 40a6ae07e0..9cc3124b29 100644 --- a/Core/src/org/sleuthkit/autopsy/timeline/ui/AbstractTimeLineView.java +++ b/Core/src/org/sleuthkit/autopsy/timeline/ui/AbstractTimeLineView.java @@ -100,9 +100,6 @@ public abstract class AbstractTimeLineView extends BorderPane { public void handleRefreshRequested(RefreshRequestedEvent event) { refresh(); } - - - /** * Does the view represent an out-of-date state of the DB. It might if, for