We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35bc274 commit aa6ae9aCopy full SHA for aa6ae9a
src/main/config/findbugs-filter.xml
@@ -38,4 +38,20 @@
38
<Method name="canParseShouldRequireNonNullUrl" />
39
<Bug pattern="NP_NULL_PARAM_DEREF_ALL_TARGETS_DANGEROUS" />
40
</Match>
41
+ <Match>
42
+ <!--
43
+ No one should assign a value returned from this method to primitive boolean type.
44
+ -->
45
+ <Class name="ru.mystamps.web.dao.impl.JdbcUtils" />
46
+ <Method name="getBoolean" />
47
+ <Bug pattern="NP_BOOLEAN_RETURN_NULL" />
48
+ </Match>
49
50
51
52
53
+ <Class name="ru.mystamps.web.service.SeriesInfoExtractorServiceImpl" />
54
+ <Method name="extractPerforated" />
55
56
57
</FindBugsFilter>
0 commit comments