private void getTree(FSFS fsfs, FSRoot root, String path, SVNNodeKind kind, FSID id, boolean includeIDs,
int depth, boolean recursive, ISVNTreeHandler handler) throws SVNException {
checkCancelled();
if (handler != null) {
handler.handlePath(new SVNAdminPath(path, includeIDs ? id.toString() : null, depth,
kind == SVNNodeKind.DIR));
}
if (kind != SVNNodeKind.DIR) {
return;