[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: svn commit: r31431 - in trunk/subversion/bindings/javahl: src/org/tigris/subversion/javahl tests/org/tigris/subversion/javahl

From: Branko Čibej <brane_at_xbc.nu>
Date: Sun, 25 May 2008 04:17:06 +0200

markphip_at_tigris.org wrote:
> Author: markphip
> Date: Sat May 24 17:00:20 2008
> New Revision: 31431
>
[...]
> @@ -45,9 +47,9 @@ public class LogDate implements java.io.
> if (datestr == null || datestr.length() < 27) {
> throw new ParseException("String is not a valid Subversion

So to follow up on the other discussion, this should be:

    if (datestr == null || datestr.length() != 27 || datestr[26] != 'Z') ...

That trailing 'Z' has to be there.

-- Brane

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe_at_subversion.tigris.org
For additional commands, e-mail: dev-help_at_subversion.tigris.org
Received on 2008-05-25 04:17:46 CEST

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.