Repository: accumulo Updated Branches: refs/heads/master 2b1b10720 -> 810b1e6ea
ACCUMULO-2002 Shut up findbugs complaining about a perfectly acceptable test. Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/810b1e6e Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/810b1e6e Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/810b1e6e Branch: refs/heads/master Commit: 810b1e6eaa785c3b1e14000c2ddcf5b944c19407 Parents: 2b1b107 Author: Josh Elser <els...@apache.org> Authored: Tue Apr 7 10:34:40 2015 -0400 Committer: Josh Elser <els...@apache.org> Committed: Tue Apr 7 10:35:46 2015 -0400 ---------------------------------------------------------------------- core/src/main/findbugs/exclude-filter.xml | 5 +++++ 1 file changed, 5 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/810b1e6e/core/src/main/findbugs/exclude-filter.xml ---------------------------------------------------------------------- diff --git a/core/src/main/findbugs/exclude-filter.xml b/core/src/main/findbugs/exclude-filter.xml index f18f8f0..0f66e06 100644 --- a/core/src/main/findbugs/exclude-filter.xml +++ b/core/src/main/findbugs/exclude-filter.xml @@ -92,4 +92,9 @@ </Or> <Bug code="DM" pattern="DM_EXIT" /> </Match> + <Match> + <!-- The purpose of the method is to test a null argument --> + <Class name="org.apache.accumulo.core.client.impl.ScannerOptionsTest" /> + <Bug code="NP" pattern="NP_NULL_PARAM_DEREF_ALL_TARGETS_DANGEROUS" /> + </Match> </FindBugsFilter>