Skip to content

Commit

Permalink
Exclude false positive in DeferredFileOutputStream's thresholdReached…
Browse files Browse the repository at this point in the history
…() method highlighting the FileOutputStream not being closed

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/io/trunk@1052391 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
Niall Pemberton committed Dec 23, 2010
1 parent f37d91a commit ecb36dc
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions findbugs-exclude-filter.xml
Original file line number Diff line number Diff line change
Expand Up @@ -85,4 +85,11 @@
<Bug pattern="RV_RETURN_VALUE_IGNORED_BAD_PRACTICE" />
</Match>

<Match>
<Class name="org.apache.commons.io.output.DeferredFileOutputStream" />
<Or>
<Method name="thresholdReached" params="" returns="void" />
</Or>
<Bug pattern="OBL_UNSATISFIED_OBLIGATION" />
</Match>
</FindBugsFilter>

0 comments on commit ecb36dc

Please sign in to comment.