Skip to content

Commit

Permalink
Update config/src/main/java/com/typesafe/config/impl/SimpleConfig.java
Browse files Browse the repository at this point in the history
Co-Authored-By: Havoc Pennington <hp@pobox.com>
  • Loading branch information
mpryahin and havocp authored Jan 17, 2020
1 parent b29fdd4 commit 89afa77
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ public Object getAnyRef(String path) {
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) {
Expand Down

0 comments on commit 89afa77

Please sign in to comment.