fixed code formating to reduce diffs

This commit is contained in:
mpryahin 2020-01-09 12:22:19 +03:00
parent 179e6d647a
commit 0b4c9e81ab

View File

@ -866,11 +866,10 @@ final class SimpleConfig implements Config, MergeableValue, Serializable {
// this would be caught later anyway, but the error message
// is more helpful if we check it here.
if (numberString.length() == 0) {
if (numberString.length() == 0)
throw new ConfigException.BadValue(originForException,
pathForException, "No number in size-in-bytes value '"
+ input + "'");
}
MemoryUnit units = MemoryUnit.parseUnit(unitString);