use of org.zmlx.hg4idea.HgNameWithHashInfo in project intellij-community by JetBrains.
the class HgRepositoryReader method readMQAppliedPatches.
@NotNull
public List<HgNameWithHashInfo> readMQAppliedPatches() {
ArrayList<HgNameWithHashInfo> mqPatchRefs = ContainerUtil.newArrayList();
readReferences(new File(myMqInternalDir, "status"), mqPatchRefs);
return mqPatchRefs;
}
Aggregations