Merge "AbstractTreeIterator: Add toString with entry path"

This commit is contained in:
Christian Halstrick 2012-10-22 07:11:01 -04:00 committed by Gerrit Code Review @ Eclipse.org
commit b7d2c9a446
1 changed files with 5 additions and 0 deletions

View File

@ -671,4 +671,9 @@ public int getNameOffset() {
public void getName(byte[] buffer, int offset) {
System.arraycopy(path, pathOffset, buffer, offset, pathLen - pathOffset);
}
@Override
public String toString() {
return getClass().getSimpleName() + "[" + getEntryPathString() + "]";
}
}