Details
Description
org/apache/camel/util/TimeUtils.java
in the printDuration method is something wrong on line 63 and 72.
63: s += " " + fmtI.format(minutes) + (minutes > 1 ? " minutes" : "minute");
has to be:
63: s += " " + fmtI.format(minutes) + (minutes > 1 ? " minutes" : " minute");
72: s += " " + fmtI.format(hours) + (hours > 1 ? " hours" : "hour");
has to be:
72: s += " " + fmtI.format(hours) + (hours > 1 ? " hours" : " hour");
Attachments
Issue Links
- is related to
-
KARAF-1500 Forgot a space between hours and minutes in InfoAction.java
- Closed