Skip to content

Commit 0ba80d2

Browse files
committed
fix: fix build on TravisCI by suppressing some warnings from FindBugs.
Correction for 0327798 and 1caaaf1 commits.
1 parent d4d245f commit 0ba80d2

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

src/main/config/findbugs-filter.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,22 @@
88
<Class name="~.*\.dto\..*" />
99
<Bug pattern="EI_EXPOSE_REP,EI_EXPOSE_REP2" />
1010
</Match>
11+
<Match>
12+
<Class name="ru.mystamps.web.feature.image.AddImageDataDbDto" />
13+
<Or>
14+
<Method name="getContent" />
15+
<Method name="setContent" />
16+
</Or>
17+
<Bug pattern="EI_EXPOSE_REP,EI_EXPOSE_REP2" />
18+
</Match>
19+
<Match>
20+
<Class name="ru.mystamps.web.feature.image.DbImageDto" />
21+
<Or>
22+
<Method name="getData" />
23+
<Method name="setData" />
24+
</Or>
25+
<Bug pattern="EI_EXPOSE_REP,EI_EXPOSE_REP2" />
26+
</Match>
1127
<Match>
1228
<!--
1329
String[] allowedContentTypes: potentially caller can modify data after passing it to the

0 commit comments

Comments
 (0)