Skip to content

Commit

Permalink
fix: remove Unnecessary call to 'toString()' in VertxHealthCheckEnric…
Browse files Browse the repository at this point in the history
…her.java (#3611)

Signed-off-by: Adham Ahmed Hussein Mahrous <[email protected]>
  • Loading branch information
adhamahmad authored Jan 28, 2025
1 parent 49d2b4d commit 26a627a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ private Optional<List<String>> getListValue(Config config, boolean readiness) {
} else {
throw new IllegalArgumentException(String.format(
ERROR_MESSAGE,
config.getKey(), input.getClass(), input.toString()));
config.getKey(), input.getClass(), input));
}

});
Expand Down

0 comments on commit 26a627a

Please sign in to comment.