Change visibility of DirCacheTree#getObjectId to public

Allow access to the ObjectId of a DirCacheTree if known for low level
integration code.

Change-Id: I6f05b10c9ac781f5e8b38af4a19e653313c91fa8
Signed-off-by: Philipp Marx <smigfu@googlemail.com>
This commit is contained in:
Philipp Marx 2016-03-07 22:55:46 +01:00
parent 846ef78a02
commit 011e5da3e0
1 changed files with 9 additions and 1 deletions

View File

@ -249,7 +249,15 @@ public DirCacheTree getChild(final int i) {
return children[i];
}
ObjectId getObjectId() {
/**
* Get the tree's ObjectId.
* <p>
* If {@link #isValid()} returns false this method will return null.
*
* @return ObjectId of this tree or null.
* @since 4.3
*/
public ObjectId getObjectId() {
return id;
}