On Mon, May 2, 2011 at 15:03, <hwri...@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