We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4652dd3 commit dd70f62Copy full SHA for dd70f62
src/main/config/findbugs-filter.xml
@@ -17,6 +17,15 @@
17
<Class name="~.*\.model\..*" />
18
<Bug pattern="EI_EXPOSE_REP,EI_EXPOSE_REP2" />
19
</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>
29
<Match>
30
<!--
31
It's ok, that we're don't override parent's equals() method.
0 commit comments