Skip to content

Commit dd70f62

Browse files
committed
ignore complaining from findbugs
1 parent 4652dd3 commit dd70f62

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/main/config/findbugs-filter.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,15 @@
1717
<Class name="~.*\.model\..*" />
1818
<Bug pattern="EI_EXPOSE_REP,EI_EXPOSE_REP2" />
1919
</Match>
20+
<Match>
21+
<!--
22+
String[] allowedContentTypes: potentially caller can modify data after passing it to the
23+
constructor. I don't want to fix it because all such places are known and under our
24+
control.
25+
-->
26+
<Class name="ru.mystamps.web.service.HttpURLConnectionDownloaderService" />
27+
<Bug pattern="EI_EXPOSE_REP2" />
28+
</Match>
2029
<Match>
2130
<!--
2231
It's ok, that we're don't override parent's equals() method.

0 commit comments

Comments
 (0)