This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-lang.git
The following commit(s) were added to refs/heads/master by this push: new 63d1a32 [LANG-170] Add ArrayUtils.addFirst() methods. 63d1a32 is described below commit 63d1a32318070616119e492ba6286147c4cdec6e Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Thu Jul 18 10:13:22 2019 -0400 [LANG-170] Add ArrayUtils.addFirst() methods. --- spotbugs-exclude-filter.xml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/spotbugs-exclude-filter.xml b/spotbugs-exclude-filter.xml index 864b076..2dd4c26 100644 --- a/spotbugs-exclude-filter.xml +++ b/spotbugs-exclude-filter.xml @@ -23,6 +23,12 @@ --> <FindBugsFilter> + <Match> + <Class name="org.apache.commons.lang3.ArrayUtils" /> + <Method name="addFirst" /> + <Bug pattern="NP_LOAD_OF_KNOWN_NULL_VALUE" /> + </Match> + <!-- Reason: Optimization to use == --> <Match> <Class name="org.apache.commons.lang3.BooleanUtils" />