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.
2 parents 10a0494 + d632921 commit 6220778Copy full SHA for 6220778
jsonb-generator/src/main/java/io/avaje/jsonb/generator/JsonbProcessor.java
@@ -90,6 +90,9 @@ private void readModule() {
90
91
@Override
92
public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment round) {
93
+ if (round.errorRaised()) {
94
+ return false;
95
+ }
96
APContext.setProjectModuleElement(annotations, round);
97
readModule();
98
getElements(round, ValuePrism.PRISM_TYPE).ifPresent(this::writeValueAdapters);
0 commit comments