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

Fix actions

parent b2243338
No related branches found
No related tags found
No related merge requests found
......@@ -124,6 +124,8 @@ public class DmnVerificationService {
LOGGER.info("Init verification.");
LOGGER.info("Creating thread pool with " + maxThreads + " threads.");
executor = Executors.newFixedThreadPool(maxThreads);
LOGGER.info("Init verifier.");
Reflections reflections = new Reflections(packagePath);
verifierClasses = reflections.getTypesAnnotatedWith(DmnVerifier.class);
......
......@@ -72,8 +72,8 @@ public class Action extends AbstractResultObject {
@Override
protected void validate() {
super.validate();
Validate.notNull(actionScope);
Validate.notNull(actionType);
Validate.notNull(value.actionScope);
Validate.notNull(value.actionType);
}
}
}
......@@ -64,7 +64,7 @@ public class VerificationFix {
@Override
protected void validate() {
super.validate();
Validate.notNull(fixName);
Validate.notNull(value.fixName);
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment