We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27299f0 commit a41c2faCopy full SHA for a41c2fa
pom.xml
@@ -341,6 +341,11 @@
341
<effort>Max</effort>
342
<threshold>Low</threshold>
343
<xmlOutput>true</xmlOutput>
344
+ <!-- Java11 triggers issue
345
+ https://github.com/spotbugs/spotbugs/issues/756
346
+ that is false positive, excluding it
347
+ -->
348
+ <excludeFilterFile>spotbugs-exclude.xml</excludeFilterFile>
349
</configuration>
350
<executions>
351
<execution>
spotbugs-exclude.xml
@@ -0,0 +1,8 @@
1
+<FindBugsFilter>
2
+ <Match>
3
+ <Bug pattern="RCN_REDUNDANT_NULLCHECK_WOULD_HAVE_BEEN_A_NPE" />
4
+ </Match>
5
6
+ <Bug pattern="RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE" />
7
8
+</FindBugsFilter>
0 commit comments