diff --git a/config/src/main/java/com/typesafe/config/impl/SimpleConfig.java b/config/src/main/java/com/typesafe/config/impl/SimpleConfig.java index 2a906d2f..12c0d3f7 100644 --- a/config/src/main/java/com/typesafe/config/impl/SimpleConfig.java +++ b/config/src/main/java/com/typesafe/config/impl/SimpleConfig.java @@ -285,7 +285,7 @@ final class SimpleConfig implements Config, MergeableValue, Serializable { public Long getBytes(String path) { BigInteger bytes = getBytesBigInteger(path); ConfigValue v = find(path, ConfigValueType.STRING); - return toLong(bytes,v.origin(), path); + return toLong(bytes, v.origin(), path); } private BigInteger getBytesBigInteger(String path) {