Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

1 Answer

up vote 1 down vote accepted

String.format() follows the rules of format string, so use:

String.format("%02d", bd.getHour());

Because your line, will just print 00 and ignore the added parameter.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.