This commit is contained in:
Gary Gregory 2021-04-18 19:37:56 -04:00
parent 03f559700f
commit c4019e73bb
1 changed files with 14 additions and 0 deletions

View File

@ -23,6 +23,20 @@
-->
<FindBugsFilter>
<!-- https://github.com/spotbugs/spotbugs/issues/1504 -->
<Match>
<Class name="org.apache.commons.lang3.ArrayUtils" />
<Method name="shuffle" />
<Bug pattern="DMI_RANDOM_USED_ONLY_ONCE" />
</Match>
<!-- https://github.com/spotbugs/spotbugs/issues/1504 -->
<Match>
<Class name="org.apache.commons.lang3.RandomStringUtils" />
<Method name="random" />
<Bug pattern="DMI_RANDOM_USED_ONLY_ONCE" />
</Match>
<Match>
<Class name="org.apache.commons.lang3.ArrayUtils" />
<Method name="addFirst" />