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

Missing Column Verifier

parent 199b865c
No related branches found
No related tags found
No related merge requests found
......@@ -26,8 +26,8 @@ public class MissingColumnVerifier extends AbstractVerifier {
for (VDmnDecision decision : dmnObjectContainer.getVDmnDefinition().getVDmnDecisions()) {
if (decision.getVDmnDecisionTable().getVDmnInputColumns().size() == 0) {
createResult(decision, "input");
} else if (decision.getVDmnDecisionTable().getVDmnInputColumns().size() == 0) {
createResult(decision, "input");
} else if (decision.getVDmnDecisionTable().getVDmnOutputColumns().size() == 0) {
createResult(decision, "output");
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment