Skip to content

Commit

Permalink
fix JDK9 compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
don-vip committed Nov 6, 2017
1 parent ab216d1 commit 381e56a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public DefaultLeafAdapter(String name, TreeNode parent) {
}

@Override
public Enumeration<?> children() {
public Enumeration<? extends TreeNode> children() {
return null;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public int getChildCount() {
}

@Override
public Enumeration<?> children() {
public Enumeration<? extends TreeNode> children() {
return null;
}

Expand Down

0 comments on commit 381e56a

Please sign in to comment.