Examples of SandboxCache


Examples of org.intellij.vcs.mks.realtime.SandboxCache

  @NotNull
  public SandboxesToRefresh collectAffectedSandboxes(@NotNull VcsDirtyScope dirtyScope) {
    final Set<FilePath> recursivelyDirtyDirectories = dirtyScope.getRecursivelyDirtyDirectories();
    final SandboxesToRefresh sandboxesToRefresh = new SandboxesToRefresh();
    final SandboxCache cache = MksVcs.getInstance(myProject).getSandboxCache();
    for (FilePath directory : recursivelyDirtyDirectories) {

      final VirtualFile dirVFile = directory.getVirtualFile();
      if (dirVFile == null) {
//        System.err.println("no vfile for " + directory);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.