Skip to content

Commit

Permalink
[fix] Don't skip PCSes already in conflicts, fix #65
Browse files Browse the repository at this point in the history
  • Loading branch information
slarse committed Mar 16, 2020
1 parent e53ea29 commit 6c3b710
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/main/java/se/kth/spork/base3dm/TdmMerge.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@ public static <T extends ListNode,V> void resolveRawMerge(TStar<T,V> base, TStar
for (Pcs<T> pcs : delta.getStar()) {
if (!delta.contains(pcs)) // was removed as otherPcs
continue;
if (delta.inStructuralConflict(pcs)) // was registered in conflict as otherPcs
continue;

if (!pcs.getPredecessor().isListEdge()) {
Set<Content<T,V>> contents = delta.getContent(pcs.getPredecessor());
Expand Down

0 comments on commit 6c3b710

Please sign in to comment.