diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2010-12-10 21:58:05 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2011-01-28 01:11:12 +0100 |
commit | 38eec8f4a26935ba9e75bfbdde8a5682e05f338d (patch) | |
tree | e609e5e005fed86ef245b1646010312eaa0a3a61 /org.eclipse.jgit/findBugs | |
parent | f5fe2dca3cb9f57891e1a4b18832fcc158d0c490 (diff) | |
download | jgit-38eec8f4a26935ba9e75bfbdde8a5682e05f338d.tar.gz jgit-38eec8f4a26935ba9e75bfbdde8a5682e05f338d.zip |
[findbugs] Do not ignore exceptional return value of mkdir
java.io.File.mkdir() and mkdirs() report failure as an exceptional
return value false. Fix the code which silently ignored this
exceptional return value.
Change-Id: I41244f4b9d66176e68e2c07e2329cf08492f8619
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit/findBugs')
-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 948308e778..073f3da9d5 100644 --- a/org.eclipse.jgit/findBugs/FindBugsExcludeFilter.xml +++ b/org.eclipse.jgit/findBugs/FindBugsExcludeFilter.xml @@ -9,6 +9,13 @@ <Bug pattern="DM_GC" /> </Match> + <!-- Silence ignoring return value of mkdirs --> + <Match> + <Class name="org.eclipse.jgit.dircache.DirCacheCheckout" /> + <Method name="checkout" /> + <Bug pattern="RV_RETURN_VALUE_IGNORED_BAD_PRACTICE" /> + </Match> + <!-- Silence the construction of our magic String instance. --> <Match> |