use of org.jetbrains.idea.svn.dialogs.WCInfo in project intellij-community by JetBrains.
the class WcInfoLoader method reloadInfo.
@Nullable
public WCInfoWithBranches reloadInfo(@NotNull WCInfoWithBranches info) {
File file = info.getRootInfo().getIoFile();
RootUrlInfo rootInfo = myVcs.getSvnFileUrlMapping().getWcRootForFilePath(file);
return rootInfo != null ? createInfo(new WCInfo(rootInfo, SvnUtil.isWorkingCopyRoot(file), SvnUtil.getDepth(myVcs, file))) : null;
}
Aggregations