Skip to content

Commit

Permalink
Revert method visibility change
Browse files Browse the repository at this point in the history
  • Loading branch information
nielsbauman committed Aug 14, 2024
1 parent d6963d3 commit c74d92e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1498,7 +1498,7 @@ public static int parseInt(String s, int minValue, int maxValue, String key, boo
return value;
}

private static long parseLong(String s, long minValue, String key, boolean isFiltered) {
static long parseLong(String s, long minValue, String key, boolean isFiltered) {
long value = Long.parseLong(s);
if (value < minValue) {
String err = "Failed to parse value" + (isFiltered ? "" : " [" + s + "]") + " for setting [" + key + "] must be >= " + minValue;
Expand Down

0 comments on commit c74d92e

Please sign in to comment.