public void print()

in changes-patch-builder/src/jetbrains/buildServer/vcs/patches/fs/MemoryFileSystemImpl.java [292:311]


  public void print(final boolean verbose) {
    traverseAndRun(root, new StringBuilder(), new NodeVisitor() {
      public void visit(Node node, String fullPath) {
        if (!verbose) {
          if (node.marker) {
            System.out.println(fullPath);
          }
        } else {
          System.out.print(fullPath);
          if (!node.isFile) {
            System.out.print("/");
          }
          if (node.marker) {
            System.out.print("$");
          }
          System.out.println();
        }
      }
    });
  }