Normand Briere
2019-02-22 611518a0ff65fd05e517d44adbcec639570b86eb
timeflow/data/time/TimeUnit.java
....@@ -13,7 +13,7 @@
1313 public static final TimeUnit HOUR = new TimeUnit("Hours", Calendar.HOUR_OF_DAY, 60 * 60 * 1000L, "HH:mm", "MMM d yyyy HH:mm");
1414 public static final TimeUnit MINUTE = new TimeUnit("Minutes", Calendar.MINUTE, 60 * 1000L, ":mm", "MMM d yyyy HH:mm");
1515 public static final TimeUnit SECOND = new TimeUnit("Seconds", Calendar.SECOND, 1000L, ":ss", "MMM d yyyy HH:mm:ss");
16
- public static final TimeUnit REALTIME = new TimeUnit("Realtime", Calendar.MILLISECOND, 1L, ":SS", "HH:mm:ss.SS");
16
+ public static final TimeUnit REALTIME = new TimeUnit("Realtime", Calendar.MILLISECOND, 1L, ".SS", "HH:mm:ss.SS");
1717
1818 public static final TimeUnit DECADE = multipleYears(10);
1919 public static final TimeUnit CENTURY = multipleYears(100);
....@@ -238,7 +238,7 @@
238238
239239 public String format(Date date)
240240 {
241
- return format.format(date);
241
+ return format.format(date);
242242 }
243243
244244 public String formatFull(Date date)