* information is also provided for copied paths
* @throws SVNException no repository is found at
* <code>repositoryRoot</code>
*/
public void doGetChanged(File repositoryRoot, SVNRevision revision, ISVNChangeEntryHandler handler, boolean includeCopyInfo) throws SVNException {
FSFS fsfs = open(repositoryRoot, revision);
long revNum = SVNAdminHelper.getRevisionNumber(revision, fsfs.getYoungestRevision(), fsfs);
FSRoot root = fsfs.createRevisionRoot(revNum);
long baseRevision = revNum - 1;
SVNNodeEditor editor = generateDeltaTree(fsfs, root, baseRevision);
editor.traverseTree(includeCopyInfo, handler);
}