Author: zothar
Date: 2007-06-22 22:21:03 +0000 (Fri, 22 Jun 2007)
New Revision: 13721

Modified:
   trunk/freenet/src/freenet/support/TimeUtil.java
Log:
Fix case of ugly output from TimeUtil.formatTime()

Modified: trunk/freenet/src/freenet/support/TimeUtil.java
===================================================================
--- trunk/freenet/src/freenet/support/TimeUtil.java     2007-06-22 21:22:55 UTC 
(rev 13720)
+++ trunk/freenet/src/freenet/support/TimeUtil.java     2007-06-22 22:21:03 UTC 
(rev 13721)
@@ -34,6 +34,9 @@
             sb.append('-');
             l = l * -1;
         }
+        if( !withSecondFractions && l < 1000 ) {
+            return "";
+        }
         //
         int weeks = (int)(l / ((long)7*24*60*60*1000));
         if (weeks > 0) {


Reply via email to