Skip to content

Commit 70f8361

Browse files
committed
build: suppress warnings from FindBugs to fix build on Travis CI.
Correction for 17c052d and 59c40b3 commits.
1 parent 9965b6c commit 70f8361

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

src/main/config/findbugs-filter.xml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,24 @@
88
<Class name="~.*\.dto\..*" />
99
<Bug pattern="EI_EXPOSE_REP,EI_EXPOSE_REP2" />
1010
</Match>
11+
<Match>
12+
<Class name="ru.mystamps.web.feature.account.AddUserDbDto" />
13+
<Or>
14+
<Method name="getActivatedAt" />
15+
<Method name="setActivatedAt" />
16+
<Method name="getRegisteredAt" />
17+
<Method name="setRegisteredAt" />
18+
</Or>
19+
<Bug pattern="EI_EXPOSE_REP,EI_EXPOSE_REP2" />
20+
</Match>
21+
<Match>
22+
<Class name="ru.mystamps.web.feature.account.AddUsersActivationDbDto" />
23+
<Or>
24+
<Method name="getCreatedAt" />
25+
<Method name="setCreatedAt" />
26+
</Or>
27+
<Bug pattern="EI_EXPOSE_REP,EI_EXPOSE_REP2" />
28+
</Match>
1129
<Match>
1230
<Class name="ru.mystamps.web.feature.image.AddImageDataDbDto" />
1331
<Or>

0 commit comments

Comments
 (0)