Skip to content
Snippets Groups Projects
Commit 78e39f0d authored by Jonas Blatt's avatar Jonas Blatt :ant:
Browse files

Merge branch 'master' into 'develop'

Master

See merge request jonasblatt/ma-jonasblatt-dmn-verifier!117
parents 0ea08ce9 43f9636d
No related branches found
No related tags found
No related merge requests found
...@@ -80,8 +80,10 @@ public class IdenticalRuleVerifier extends AbstractVerifier { ...@@ -80,8 +80,10 @@ public class IdenticalRuleVerifier extends AbstractVerifier {
.addToEntry( .addToEntry(
VerificationClassification.WARNING, VerificationClassification.WARNING,
templateDecision(dmnDecisionTable.getVDmnDecision()) templateDecision(dmnDecisionTable.getVDmnDecision())
+ "Rules %s have identical inputs. The output is " + "Rules %s have identical inputs. "
+ (sameConclusions ? "the same." : "the same."), + (sameConclusions
? "The output is the same."
: "The outputs have different conclusions!"),
getRulesRowsStrings(currentRules)); getRulesRowsStrings(currentRules));
} else { } else {
List<VDmnInputValue> curInVals = new ArrayList<>(); List<VDmnInputValue> curInVals = new ArrayList<>();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment