Merge "Remove unused getTreeId from TreeFormatter"

This commit is contained in:
Chris Aniszczyk 2010-12-06 10:10:26 -05:00 committed by Code Review
commit 35d51d040c
1 changed files with 0 additions and 19 deletions

View File

@ -270,25 +270,6 @@ private void fmtOverflowBuffer(byte[] nameBuf, int namePos, int nameLen,
overflowBuffer.write((byte) 0);
}
/**
* Compute the current tree's ObjectId.
*
* @return computed ObjectId of the tree
*/
public ObjectId getTreeId() {
final ObjectInserter.Formatter fmt = new ObjectInserter.Formatter();
if (buf != null)
return fmt.idFor(OBJ_TREE, buf, 0, ptr);
try {
final long len = overflowBuffer.length();
return fmt.idFor(OBJ_TREE, len, overflowBuffer.openInputStream());
} catch (IOException err) {
// This should never happen, its read failure on a byte array.
throw new RuntimeException(err);
}
}
/**
* Insert this tree and obtain its ObjectId.
*