Merge "Exclude FindBugs warning about uninitialized read"

This commit is contained in:
Shawn Pearce 2010-11-01 17:24:20 -04:00 committed by Code Review
commit 009507ca2e
1 changed files with 7 additions and 0 deletions

View File

@ -31,4 +31,11 @@
<Match>
<Bug pattern="CN_IMPLEMENTS_CLONE_BUT_NOT_CLONEABLE" />
</Match>
<!-- blockIndex is initialized to 0 automatically.
-->
<Match>
<Class name="org.eclipse.jgit.util.TemporaryBuffer$BlockInputStream" />
<Bug pattern="UR_UNINIT_READ" />
</Match>
</FindBugsFilter>