* @since 1.3, SVN 1.6
*/
public void doPack(File repositoryRoot) throws SVNException {
FSFS fsfs = SVNAdminHelper.openRepository(repositoryRoot, true);
try {
FSPacker packer = new FSPacker(myEventHandler);
packer.pack(fsfs);
} finally {
SVNAdminHelper.closeRepository(fsfs);
}
}