statusOperation.run();
}
private void fillInfo( Entry entry, SvnOperationFactory operationFactory, StatusHandler statusHandler ) throws SVNException {
if ( statusHandler.repositoryPath == null || statusHandler.repositoryPath.length() == 0 ) {
SvnGetInfo infoOperation = operationFactory.createGetInfo();
infoOperation.setSingleTarget( SvnTarget.fromFile( entry.getPath() ) );
SvnInfo infoResult = infoOperation.run();
statusHandler.repositoryRoot = infoResult.getRepositoryRootUrl().toString();
statusHandler.repositoryPath = infoResult.getUrl().toString().substring( statusHandler.repositoryRoot.length() + 1 );
}
}