Skip to content

Commit

Permalink
[misc] Update error message #43
Browse files Browse the repository at this point in the history
  • Loading branch information
slarse committed Mar 9, 2020
1 parent 18e4f98 commit 04cde80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/se/kth/spork/spoon/PcsInterpreter.java
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ private void setContent(CtElement mergeTree, SpoonNode originalTree) {
Set<Content<SpoonNode, RoledValues>> nodeContents = contents.get(originalTree);

if (nodeContents.size() != 1) {
throw new IllegalStateException("UNHANDLED CONFLICT");
throw new IllegalStateException("Internal error, unhandled conflict: " + nodeContents);
} else {
RoledValues rvs = nodeContents.iterator().next().getValue();

Expand Down

0 comments on commit 04cde80

Please sign in to comment.