Here is my code:
timeFormat = String.format("%02d:%02d:%02d",hoursFormat, minsFormat, secsFormat);
hoursFormat, minsFormat, and secsFormat are all ints
This gives a compilation error:
Unresolved compilation problem:
The method format(String, Object[]) in the type String is not applicable for the arguments (String, int, int, int)
Does anyone know why String.format() is not working this way?
