Skip to content

Commit

Permalink
Fix checkstyle issue: enums are implicitly static
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Marr <[email protected]>
  • Loading branch information
smarr committed Jan 30, 2016
1 parent 2d40d9b commit 5c86414
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ static Source createConstantSource42(String testName) {
return Source.fromText(CONSTANT_SOURCE_TEXT, testName).withMimeType("text/x-instTest");
}

static enum InstrumentTestTag implements SyntaxTag {
enum InstrumentTestTag implements SyntaxTag {

ADD_TAG("addition", "test language addition node"),

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

public interface FrameInstance {

public static enum FrameAccess {
enum FrameAccess {
NONE,
READ_ONLY,
READ_WRITE,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
*/
public abstract class NodeFieldAccessor {

public static enum NodeFieldKind {
public enum NodeFieldKind {
/** The reference to the {@link NodeClass}. */
NODE_CLASS,
/** The single {@link Node#getParent() parent} field. */
Expand Down

0 comments on commit 5c86414

Please sign in to comment.