Typo defaultVaue

This commit is contained in:
thatsIch 2014-09-20 23:35:04 +02:00
parent 8a21b5ab55
commit 63331d8d49
2 changed files with 2 additions and 2 deletions

View file

@ -270,7 +270,7 @@ public class AEConfig extends Configuration implements IConfigurableObject, ICon
{
if ( feature.isVisible() )
{
if ( get( "Features." + feature.getCategory(), feature.name(), feature.defaultVaue() ).getBoolean( feature.defaultVaue() ) )
if ( get( "Features." + feature.getCategory(), feature.name(), feature.defaultValue() ).getBoolean( feature.defaultValue() ) )
featureFlags.add( feature );
}
else

View file

@ -75,7 +75,7 @@ public enum AEFeature
return Category;
}
public Boolean defaultVaue()
public Boolean defaultValue()
{
return defValue;
}