Remove redundant 'static' modifiers

enums, interfaces, and field members in interfaces are by default
static, so don't need to be explicitly declared so.

Change-Id: I29270c28be30965767519ad0105a7d93a24e0ab4
This commit is contained in:
David Pursehouse
2016-04-11 20:24:44 +09:00
parent 67881a213a
commit ad0e4bfe7d
81 changed files with 93 additions and 93 deletions

View File

@@ -19,7 +19,7 @@ import java.util.SortedSet;
public class TreeFormatter {
public static interface TreeNode {
public interface TreeNode {
String getDisplayName();
boolean isVisible();
SortedSet<? extends TreeNode> getChildren();