Code style changes.

This commit is contained in:
MobiusDev
2016-04-26 19:21:19 +00:00
parent 6a13705766
commit fc070c9238
768 changed files with 3338 additions and 4252 deletions

View File

@ -640,7 +640,7 @@ public class StatsSet implements IParserAdvUtils
public void safeSet(String key, int value, int min, int max, String reference)
{
assert !(((min <= max) && ((value < min) || (value >= max))));
assert ((min > max) || ((value >= min) && (value < max)));
if ((min <= max) && ((value < min) || (value >= max)))
{
_log.log(Level.SEVERE, "Incorrect value: " + value + "for: " + key + "Ref: " + reference);