use of org.zmlx.hg4idea.execution.HgCommandExecutor in project intellij-community by JetBrains.
the class HgResolveCommand method markResolved.
public void markResolved(@NotNull VirtualFile repo, @NotNull Collection<FilePath> paths) {
for (List<String> chunk : VcsFileUtil.chunkPaths(repo, paths)) {
final List<String> args = new ArrayList<>();
args.add("--mark");
args.addAll(chunk);
new HgCommandExecutor(myProject).execute(repo, "resolve", args, null);
}
}
Aggregations