We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d558de commit 9507ab9Copy full SHA for 9507ab9
http-generator-core/src/main/java/io/avaje/http/generator/core/BaseProcessor.java
@@ -56,6 +56,9 @@ public synchronized void init(ProcessingEnvironment processingEnv) {
56
57
@Override
58
public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment round) {
59
+ if (round.errorRaised()) {
60
+ return false;
61
+ }
62
var pathElements = round.getElementsAnnotatedWith(typeElement(PathPrism.PRISM_TYPE));
63
APContext.setProjectModuleElement(annotations, round);
64
if (contextPathString == null) {
0 commit comments