Skip to content

Commit aa6ae9a

Browse files
committed
Suppress FindBugs warnings to fix build.
Should be in ccd457e commit. Addressed to #782
1 parent 35bc274 commit aa6ae9a

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

Diff for: src/main/config/findbugs-filter.xml

+16
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,20 @@
3838
<Method name="canParseShouldRequireNonNullUrl" />
3939
<Bug pattern="NP_NULL_PARAM_DEREF_ALL_TARGETS_DANGEROUS" />
4040
</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+
<Match>
50+
<!--
51+
No one should assign a value returned from this method to primitive boolean type.
52+
-->
53+
<Class name="ru.mystamps.web.service.SeriesInfoExtractorServiceImpl" />
54+
<Method name="extractPerforated" />
55+
<Bug pattern="NP_BOOLEAN_RETURN_NULL" />
56+
</Match>
4157
</FindBugsFilter>

0 commit comments

Comments
 (0)