We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c61e78 commit c9e55d8Copy full SHA for c9e55d8
validator-generator/src/main/java/io/avaje/validation/generator/ValidationProcessor.java
@@ -98,6 +98,9 @@ private void readModule() {
98
99
@Override
100
public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment round) {
101
+ if (round.errorRaised()) {
102
+ return false;
103
+ }
104
APContext.setProjectModuleElement(annotations, round);
105
readModule();
106
getElements(round, AvajeConstraintPrism.PRISM_TYPE).ifPresent(this::writeConstraintAdapters);
0 commit comments