Skip to content
Snippets Groups Projects
Commit 4fa5956e authored by Dr. Carl Corea's avatar Dr. Carl Corea
Browse files

Update OverlappingVerifier.java

parent 35040ca4
No related branches found
No related tags found
No related merge requests found
......@@ -147,14 +147,14 @@ public class OverlappingVerifier extends AbstractVerifier {
StringBuilder sb = new StringBuilder();
sb.append("In table ");
sb.append(currentRuleIdentifiers.get(0).getTableName());
sb.append(" rules ");
sb.append(", rules ");
sb.append(
currentRuleIdentifiers.stream()
.map(c -> c.getRowNumber().toString())
.collect(Collectors.joining(", ")));
sb.append(" are overlapping.");
if (isDifferentConclusion) {
sb.append(" The output has different conclusions!");
sb.append(" The outputs have different conclusions!");
} else {
sb.append(" The output is the same.");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment