🐛 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);
|
builder = builder.flag(flag);
|
||||||
}
|
}
|
||||||
for (final Annotation annotation : method.getDeclaredAnnotations()) {
|
for (final Annotation annotation : method.getDeclaredAnnotations()) {
|
||||||
@SuppressWarnings("ALL")
|
@SuppressWarnings("rawtypes")
|
||||||
final BiFunction builderModifier = this.builderModifiers.get(annotation.annotationType());
|
final BiFunction builderModifier = this.builderModifiers.get(annotation.annotationType());
|
||||||
if (builderModifier == null) {
|
if (builderModifier == null) {
|
||||||
continue;
|
continue;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue