Code style changes.
This commit is contained in:
@ -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);
|
||||
|
Reference in New Issue
Block a user