Skip to content

Commit

Permalink
return false instead of true in processor
Browse files Browse the repository at this point in the history
  • Loading branch information
tonivade committed Mar 9, 2024
1 parent 85acf8a commit c2be275
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment
}
}
}
return true;
return false;
}

private void generate(TypeElement element) throws IOException {
Expand Down

0 comments on commit c2be275

Please sign in to comment.