Unnecessary modifier in enums
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user