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
@@ -78,13 +78,13 @@ public enum AEFeature
public final boolean isVisible;
public final boolean defaultValue;
private AEFeature(String cat) {
AEFeature( String cat ) {
this.category = cat;
this.isVisible = !this.name().equals( "Core" );
this.defaultValue = true;
}
private AEFeature(String cat, boolean defaultValue) {
AEFeature( String cat, boolean defaultValue ) {
this.category = cat;
this.isVisible = !this.name().equals( "Core" );
this.defaultValue = defaultValue;
@@ -50,7 +50,7 @@ public enum TickRates
public int min;
public int max;
private TickRates(int min, int max) {
TickRates( int min, int max ) {
this.min = min;
this.max = max;
}