Skip to content

Commit 0a548dc

Browse files
committed
Configure FindBugs to ignore EQ_DOESNT_OVERRIDE_EQUALS.
1 parent 4baa9f4 commit 0a548dc

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/main/config/findbugs-filter.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,11 @@
88
<Class name="~.*\.dto\..*" />
99
<Bug pattern="EI_EXPOSE_REP,EI_EXPOSE_REP2" />
1010
</Match>
11+
<Match>
12+
<!--
13+
It's ok, that we're don't override parent's equals() method.
14+
-->
15+
<Class name="ru.mystamps.web.support.spring.security.CustomUserDetails" />
16+
<Bug pattern="EQ_DOESNT_OVERRIDE_EQUALS" />
17+
</Match>
1118
</FindBugsFilter>

0 commit comments

Comments
 (0)