Refactor method name

This commit is contained in:
Marcin Krykowski
2020-06-15 22:48:06 +01:00
parent 1ba2c2a0dc
commit 7b8b442201
2 changed files with 2 additions and 2 deletions
@@ -41,7 +41,7 @@ public class FormatNumber {
return String.format("%." + places + "f", value);
}
public static String byPaddingOutZeros(int value, int paddingLength) {
public static String byPaddingZeros(int value, int paddingLength) {
return String.format("%0" + paddingLength + "d", value);
}