Add more findbugs suppressions after verification.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1436964 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ebb7cf69cf
commit
4b8889d152
|
@ -43,4 +43,20 @@
|
|||
</Or>
|
||||
</Match>
|
||||
|
||||
<!-- Load first tries ISO_8859_1 encoding, and reverts to the system's default if not available -->
|
||||
<Match>
|
||||
<Class name="org.apache.commons.collections.ExtendedProperties" />
|
||||
<Method name="load" params="java.io.InputStream, java.lang.String" returns="void" />
|
||||
<Bug pattern="DM_DEFAULT_ENCODING" />
|
||||
</Match>
|
||||
|
||||
<!-- TreeBidiMap implements equals by delegating to another method for re-usability -->
|
||||
<Match>
|
||||
<Or>
|
||||
<Class name="org.apache.commons.collections.bidimap.TreeBidiMap" />
|
||||
<Class name="org.apache.commons.collections.bidimap.TreeBidiMap$Inverse" />
|
||||
</Or>
|
||||
<Bug pattern="EQ_UNUSUAL" />
|
||||
</Match>
|
||||
|
||||
</FindBugsFilter>
|
||||
|
|
Loading…
Reference in New Issue