Uploaded image for project: 'Camel'
  1. Camel
  2. CAMEL-5277

Forgot a space between hours and minutes in org/apache/camel/util/TimeUtils.java

    XMLWordPrintableJSON

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

          Activity

            People

              muellerc Christian Müller
              olifant1990 Ronald de Haan
              Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: