You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Greg Stein <gs...@gmail.com> on 2011/05/02 22:13:12 UTC

Re: svn commit: r1098736 - in /subversion/trunk/subversion/bindings/javahl: native/CreateJ.cpp native/CreateJ.h native/EnumMapper.cpp native/EnumMapper.h src/org/apache/subversion/javahl/types/Info.java src/org/tigris/subversion/javahl/Info2.java

On Mon, May 2, 2011 at 15:03,  <hw...@apache.org> wrote:
>...
> +++ subversion/trunk/subversion/bindings/javahl/src/org/tigris/subversion/javahl/Info2.java Mon May  2 19:03:00 2011
> @@ -346,7 +346,8 @@ public class Info2 implements java.io.Se
>              aInfo.getCopyFromUrl(), aInfo.getCopyFromRev(),
>              aInfo.getTextTime() == null ? 0
>                 : aInfo.getTextTime().getTime() * 1000,
> -             0, aInfo.getChecksum(),
> +             0, aInfo.getChecksum() == null ? null
> +                    : new String(aInfo.getChecksum().getDigest()),

Per IRC, you're returning the raw bytes here, rather than the hexified
checksum string.

Cheers,
-g