From e0940cb2fa7271d570878b62bbcd7e7ab7811384 Mon Sep 17 00:00:00 2001 From: jmillman Date: Mon, 13 Jun 2016 14:07:11 -0400 Subject: [PATCH] revert unrelated changes --- .../autopsy/timeline/datamodel/eventtype/EventType.java | 6 ++---- .../sleuthkit/autopsy/timeline/ui/AbstractTimeLineView.java | 3 --- 2 files changed, 2 insertions(+), 7 deletions(-) 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