Unnecessary modifier in enums

This commit is contained in:
thatsIch
2015-03-26 11:03:15 +01:00
parent 3143c871d0
commit 6aeca93b85
11 changed files with 12 additions and 12 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ public enum Commands
return this.name();
}
private Commands(int level, ISubCommand w) {
Commands( int level, ISubCommand w ) {
this.level = level;
this.command = w;
}