Search in sources :

Example 1 with SvnKitProgressCanceller

use of org.jetbrains.idea.svn.svnkit.SvnKitProgressCanceller in project intellij-community by JetBrains.

the class PrimitivePool method createRepository.

@Override
public SVNRepository createRepository(SVNURL url, boolean mayReuse) throws SVNException {
    final SVNRepository repos = SVNRepositoryFactory.create(url, this);
    repos.setAuthenticationManager(myManager);
    repos.setTunnelProvider(myTunnelProvider);
    repos.setDebugLog(new ProxySvnLog(SVNDebugLog.getDefaultLog()));
    repos.setCanceller(new SvnKitProgressCanceller());
    return repos;
}
Also used : SvnKitProgressCanceller(org.jetbrains.idea.svn.svnkit.SvnKitProgressCanceller) SVNRepository(org.tmatesoft.svn.core.io.SVNRepository)

Aggregations

SvnKitProgressCanceller (org.jetbrains.idea.svn.svnkit.SvnKitProgressCanceller)1 SVNRepository (org.tmatesoft.svn.core.io.SVNRepository)1