this access

This commit is contained in:
thatsIch
2015-01-01 21:17:00 +01:00
parent eed0c11d7f
commit 8920d949d2
28 changed files with 133 additions and 133 deletions
+2 -2
View File
@@ -57,13 +57,13 @@ public enum Settings
public EnumSet getPossibleValues()
{
return values;
return this.values;
}
private Settings(EnumSet set) {
if ( set == null || set.isEmpty() )
throw new RuntimeException( "Invalid configuration." );
values = set;
this.values = set;
}
}