Browse Source

Refer to getEntryPathLength in docs of getEntryPathBuffer

Change-Id: Icca41d80bd0791cd2d4bf03297795d161afbee70
stable-3.0
Robin Stocker 12 years ago
parent
commit
664d738c9f
  1. 9
      org.eclipse.jgit/src/org/eclipse/jgit/treewalk/AbstractTreeIterator.java

9
org.eclipse.jgit/src/org/eclipse/jgit/treewalk/AbstractTreeIterator.java

@ -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