meeh
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Dmitry Isaenko 2025-02-15 21:32:14 +03:00
parent 1c9ba87f9a
commit 80152e119c

View file

@ -147,9 +147,9 @@ public class RainbowDump {
}
public static String formatDecHexString(long value){
return String.format("%-20d 0x%x", value, value);
return String.format("%1$-20d %1$#x", value);
}
public static String formatDecHexString(int value){
return String.format("%-20d 0x%x", value, value);
return String.format("%1$-20d %1$#x", value);
}
}