🐛 Fix suppression in AnnotationParser
This commit is contained in:
parent
c48eb28434
commit
94b960a992
1 changed files with 1 additions and 1 deletions
|
|
@ -480,7 +480,7 @@ public final class AnnotationParser<C> {
|
|||
builder = builder.flag(flag);
|
||||
}
|
||||
for (final Annotation annotation : method.getDeclaredAnnotations()) {
|
||||
@SuppressWarnings("ALL")
|
||||
@SuppressWarnings("rawtypes")
|
||||
final BiFunction builderModifier = this.builderModifiers.get(annotation.annotationType());
|
||||
if (builderModifier == null) {
|
||||
continue;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue