Added exlude filter for MultiKey.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1477834 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9f0af0bfee
commit
10a5e1c698
|
@ -65,7 +65,7 @@
|
|||
<Bug pattern="RV_CHECK_COMPARETO_FOR_SPECIFIC_RETURN_VALUE" />
|
||||
</Match>
|
||||
|
||||
<!-- The ObjectArrayIterator does iterate over an array, thus this we do not want to copy it -->
|
||||
<!-- The ObjectArrayIterator does iterate over an array, thus we do not want to copy it -->
|
||||
<Match>
|
||||
<Class name="org.apache.commons.collections4.iterators.ObjectArrayIterator" />
|
||||
<Or>
|
||||
|
@ -74,4 +74,11 @@
|
|||
</Or>
|
||||
</Match>
|
||||
|
||||
<!-- The constructor has a boolean argument which controls whether the array shall be copied or not -->
|
||||
<Match>
|
||||
<Class name="org.apache.commons.collections4.keyvalue.MultiKey" />
|
||||
<Method name="<init>" params="java.lang.Object[], boolean" returns="void" />
|
||||
<Bug pattern="EI_EXPOSE_REP2" />
|
||||
</Match>
|
||||
|
||||
</FindBugsFilter>
|
||||
|
|
Loading…
Reference in New Issue