Remove modifiers 'public' and 'abstract' from interface methods
These modifiers are unnecessary (default for interface methods). Change-Id: I5ad21dded21059922fb00449ba44e98037311ac4
This commit is contained in:
@@ -20,9 +20,9 @@ import java.util.SortedSet;
|
||||
public class TreeFormatter {
|
||||
|
||||
public static interface TreeNode {
|
||||
public String getDisplayName();
|
||||
public boolean isVisible();
|
||||
public SortedSet<? extends TreeNode> getChildren();
|
||||
String getDisplayName();
|
||||
boolean isVisible();
|
||||
SortedSet<? extends TreeNode> getChildren();
|
||||
}
|
||||
|
||||
public static final String NOT_VISIBLE_NODE = "(x)";
|
||||
|
Reference in New Issue
Block a user