Skip to content

Commit 40a475a

Browse files
committed
supress spotbugs errors for generated code
1 parent 1dfefa4 commit 40a475a

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/main/java/org/bbottema/javareflection/model/MethodParameter.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
package org.bbottema.javareflection.model;
22

3+
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
34
import lombok.Value;
45

56
import java.lang.annotation.Annotation;
67
import java.lang.reflect.Type;
78
import java.util.Collection;
89

910
@Value
11+
@SuppressFBWarnings(justification = "Generated code")
1012
public class MethodParameter {
1113
final int index;
1214
final Class<?> type;

0 commit comments

Comments
 (0)