Skip to content

Commit 2a150e6

Browse files
committed
class TreeTableVIew.Root is not longer needed
1 parent 00d5e00 commit 2a150e6

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

visualvm/heapviewer/src/org/graalvm/visualvm/heapviewer/ui/TreeTableView.java

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public class TreeTableView {
9292
private final HeapViewerActions actions;
9393

9494
private final List<TreeTableViewColumn> columns;
95-
private final Root root;
95+
private final RootNode root;
9696
private HeapViewerNode currentRoot;
9797

9898
private Model model;
@@ -135,7 +135,7 @@ public TreeTableView(String viewID, HeapContext context, HeapViewerActions actio
135135
this.context = context;
136136
this.actions = actions;
137137

138-
root = new Root() {
138+
root = new RootNode() {
139139
public HeapContext getContext() { return TreeTableView.this.context; }
140140
public String getViewID() { return TreeTableView.this.viewID; }
141141
public HeapViewerNodeFilter getViewFilter() { return TreeTableView.this.filter; };
@@ -828,13 +828,6 @@ public void setValueAt(Object aValue, TreeNode node, int column) {}
828828
}
829829

830830

831-
private abstract class Root extends RootNode {
832-
833-
public abstract void updateChildren(HeapViewerNode node);
834-
835-
}
836-
837-
838831
public static final class ColumnConfiguration {
839832

840833
final DataType alwaysShown;

0 commit comments

Comments
 (0)