Resolve TODO: Make these private if the subclass goes away

Subclass no longer exists, so this is safe to do and resolve
This commit is contained in:
Wiz 2021-12-10 13:19:41 -05:00
parent 42ca00b35d
commit a00f113e05

View file

@ -43,10 +43,9 @@ public class VertexMouseInfo<V extends VisualVertex, E extends VisualEdge<V>> {
private final MouseEvent originalMouseEvent;
private final GraphViewer<V, E> viewer;
// TODO make these private if the subclass goes away
protected final V vertex;
private final V vertex;
private MouseEvent translatedMouseEvent;
protected Component mousedDestinationComponent;
private Component mousedDestinationComponent;
public VertexMouseInfo(MouseEvent originalMouseEvent, V vertex, Point2D vertexBasedClickPoint,
GraphViewer<V, E> viewer) {