Removed the timeline changes

This commit is contained in:
Kelly Kelly 2021-10-01 10:53:00 -04:00
parent fb668ca392
commit fdec1d82e6

View File

@ -138,7 +138,7 @@ public class EventNode extends DisplayableItemNode {
+ " The 'View File in Timeline' action will not be available."})
public Action[] getActions(boolean context) {
List<Action> actionsList = new ArrayList<>();
Collections.addAll(actionsList, super.getActions(context));
/*
* If this event is derived from an artifact, add actions to view the
* source file and a "linked" file, if present.
@ -173,9 +173,6 @@ public class EventNode extends DisplayableItemNode {
}
actionsList.addAll(ContextMenuExtensionPoint.getActions());
}
actionsList.add(null);
Collections.addAll(actionsList, super.getActions(context));
return actionsList.toArray(new Action[actionsList.size()]);
}