Skip to content

Commit

Permalink
Fix warnings in IDE. No functional changes!
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-g committed Dec 25, 2015
1 parent c412404 commit 28fbfa2
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public static String componentId() {
/**
* indicates the position of the navigation bar itself
*/
public static enum Position implements ICssClassNameProvider {
public enum Position implements ICssClassNameProvider {
/**
* fixate at the top of the screen
*/
Expand Down Expand Up @@ -87,7 +87,7 @@ public static enum Position implements ICssClassNameProvider {
*
* @param className css class name of this position enum
*/
private Position(final String className) {
Position(final String className) {
this.className = className;
}

Expand All @@ -101,7 +101,7 @@ public String cssClassName() {
/**
* indicates the position of a button inside the navigation bar.
*/
public static enum ComponentPosition {
public enum ComponentPosition {
LEFT, RIGHT
}

Expand Down

0 comments on commit 28fbfa2

Please sign in to comment.