Skip to content

Commit

Permalink
remove non-needed parse int
Browse files Browse the repository at this point in the history
  • Loading branch information
tbenr committed Jan 29, 2024
1 parent 91772e1 commit f01ea1e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ private UInt64 validateAndParseBuilderBidCompareFactor() {
}
final UInt64 builderBidCompareFactorUint64;
try {
builderBidCompareFactorUint64 = UInt64.valueOf(Integer.parseInt(builderBidCompareFactor));
builderBidCompareFactorUint64 = UInt64.valueOf(builderBidCompareFactor);
} catch (final IllegalArgumentException ex) {
throw new InvalidConfigurationException(
"Expecting a number >= 0, percentage or "
Expand Down

0 comments on commit f01ea1e

Please sign in to comment.