FindBugs gives me a 'More arguments are passed than are actually used in the format string' message on the following code:
String.format("00", bd.getHour())
bd.getHour() returns an int.
Can someone clarify this? My obective is to make sure that 1 digit ints are preceded by a 0 (1 ->01, 13->13...).
What is the right way to achieve this without getting a FindBugs message?