bayard 2004/09/26 20:40:15
Modified: lang/src/java/org/apache/commons/lang/time
DurationFormatUtils.java
Log:
teach me to commit without a compile. Removed an overloaded method, so needs another parameter
to hit a different overload
Revision Changes Path
1.18 +2 -2 jakarta-commons/lang/src/java/org/apache/commons/lang/time/DurationFormatUtils.java
Index: DurationFormatUtils.java
===================================================================
RCS file: /home/cvs/jakarta-commons/lang/src/java/org/apache/commons/lang/time/DurationFormatUtils.java,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- DurationFormatUtils.java 27 Sep 2004 03:31:59 -0000 1.17
+++ DurationFormatUtils.java 27 Sep 2004 03:40:15 -0000 1.18
@@ -104,7 +104,7 @@
* @return the time as a String
*/
public static String format(long millis, String format) {
- return format(millis, format, true);
+ return format(millis, format, true, TimeZone.getDefault());
}
/**
* <p>Get the time gap as a string, using the specified format.
---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org
|