use of org.jetbrains.idea.svn.SvnFileUrlMappingImpl in project intellij-community by JetBrains.
the class SvnTestCase method refreshSvnMappingsSynchronously.
protected void refreshSvnMappingsSynchronously() {
final SvnVcs vcs = SvnVcs.getInstance(myProject);
if (!myInitChangeListManager) {
return;
}
final Semaphore semaphore = new Semaphore();
semaphore.down();
((SvnFileUrlMappingImpl) vcs.getSvnFileUrlMapping()).realRefresh(() -> semaphore.up());
semaphore.waitFor();
}
Aggregations