Hi,
the command line log message date parser in svnClientAdapter was incorrectly
setting dates at 12:xx PM to 12:xx AM. The following patch fixes this
problem
for me (see subversion r4332, r4344, r4333, r4345, which are interleaved
according
to the svnClientAdapter r544 output).
-Jennifer Bevan
Index: commandline/Helper.java
===================================================================
--- commandline/Helper.java (revision 544)
+++ commandline/Helper.java (working copy)
@@ -75,7 +75,7 @@
// 2003-10-13T12:54:42.957948Z
private static DateFormat xmlFormat =
- new SimpleDateFormat("yyyy-MM-dd'T'hh:mm:ss");
+ new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss");
/**
* A non-instantiable class
Received on Sat Apr 3 16:39:18 2004