Update JGit to org.eclipse.jgit 0.5.1.51-g96b2e76

Bug: issue 324
Change-Id: I434f70f76fe6139950a8686d23b04ecf442388e7
Signed-off-by: Shawn O. Pearce <sop@google.com>
This commit is contained in:
Shawn O. Pearce
2009-11-17 11:05:11 -08:00
parent f95d6459b1
commit eaab2f3a46
13 changed files with 47 additions and 383 deletions

View File

@@ -14,7 +14,7 @@
package org.eclipse.jgit.lib;
import org.eclipse.jgit.util.NB;
import org.eclipse.jgit.util.IO;
import java.io.IOException;
import java.io.InputStream;
@@ -49,7 +49,7 @@ public class ObjectIdSerialization {
public static ObjectId readNotNull(final InputStream in) throws IOException {
final byte[] b = new byte[20];
NB.readFully(in, b, 0, 20);
IO.readFully(in, b, 0, 20);
return ObjectId.fromRaw(b);
}