Browse Source

Refer to getEntryPathLength in docs of getEntryPathBuffer

Change-Id: Icca41d80bd0791cd2d4bf03297795d161afbee70
tags/v3.0.0.201305080800-m7
Robin Stocker 11 years ago
parent
commit
664d738c9f

+ 8
- 1
org.eclipse.jgit/src/org/eclipse/jgit/treewalk/AbstractTreeIterator.java View File

@@ -425,7 +425,14 @@ public abstract class AbstractTreeIterator {
return TreeWalk.pathOf(this);
}

/** @return the internal buffer holding the current path. */
/**
* Get the current entry path buffer.
* <p>
* Note that the returned byte[] has to be used together with
* {@link #getEntryPathLength()} (only use bytes up to this length).
*
* @return the internal buffer holding the current path.
*/
public byte[] getEntryPathBuffer() {
return path;
}

Loading…
Cancel
Save