Browse Source

Merge "Exclude FindBugs warning about uninitialized read"

stable-0.10
Shawn Pearce 14 years ago committed by Code Review
parent
commit
009507ca2e
  1. 7
      org.eclipse.jgit/findBugs/FindBugsExcludeFilter.xml

7
org.eclipse.jgit/findBugs/FindBugsExcludeFilter.xml

@ -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>

Loading…
Cancel
Save