diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2011-11-16 20:47:12 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2011-11-16 20:55:34 +0100 |
commit | c0780bcb99de9195301ffdc2fcb16837161be5a4 (patch) | |
tree | 98b47c01630106c11ccb6d5cd96a56876fa322b1 /org.eclipse.jgit | |
parent | afebe7880dea9e5243467f5113a7ebfa65f3c079 (diff) | |
download | jgit-c0780bcb99de9195301ffdc2fcb16837161be5a4.tar.gz jgit-c0780bcb99de9195301ffdc2fcb16837161be5a4.zip |
[findBugs] Silence returning null for StringUtils.toBooleanOrNull()
As the method name and its javadoc clearly state that this method can
return null we can ignore this FindBugs warning.
Change-Id: I366435e26eda5d910f5d1a907db51f08efd4bb8c
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit')
-rw-r--r-- | org.eclipse.jgit/findBugs/FindBugsExcludeFilter.xml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/org.eclipse.jgit/findBugs/FindBugsExcludeFilter.xml b/org.eclipse.jgit/findBugs/FindBugsExcludeFilter.xml index 073f3da9d5..b8f300740a 100644 --- a/org.eclipse.jgit/findBugs/FindBugsExcludeFilter.xml +++ b/org.eclipse.jgit/findBugs/FindBugsExcludeFilter.xml @@ -45,4 +45,11 @@ <Class name="org.eclipse.jgit.util.TemporaryBuffer$BlockInputStream" /> <Bug pattern="UR_UNINIT_READ" /> </Match> + + <!-- Silence returning null for Boolean return type --> + <Match> + <Class name="org.eclipse.jgit.util.StringUtils" /> + <Method name="toBooleanOrNull" /> + <Bug pattern="NP_BOOLEAN_RETURN_NULL" /> + </Match> </FindBugsFilter> |