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

Merge branch 'fix/identicalRulesSameOutput' into 'master'

Fix message in identical rules "same/different conclusions"

See merge request jonasblatt/ma-jonasblatt-dmn-verifier!116
parents 82a7aec7 807a3457
No related branches found
Tags v0.9.13
No related merge requests found
......@@ -80,8 +80,10 @@ public class IdenticalRuleVerifier extends AbstractVerifier {
.addToEntry(
VerificationClassification.WARNING,
templateDecision(dmnDecisionTable.getVDmnDecision())
+ "Rules %s have identical inputs. The output is "
+ (sameConclusions ? "the same." : "the same."),
+ "Rules %s have identical inputs. "
+ (sameConclusions
? "The output is the same."
: "The outputs have different conclusions!"),
getRulesRowsStrings(currentRules));
} else {
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