summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShawn Pearce <spearce@spearce.org>2010-11-01 17:24:20 -0400
committerCode Review <codereview-daemon@eclipse.org>2010-11-01 17:24:20 -0400
commit009507ca2eafe1c6218ca3779348452495dcd3a3 (patch)
tree0042c6a147743f5f54f1785195f60c5745a25a5f
parentaa09599a3d15e94d1fb317f65155ce22e6d9fc58 (diff)
parentb70d8853f891302a35ab41ff6ad83b069b644730 (diff)
downloadjgit-009507ca2eafe1c6218ca3779348452495dcd3a3.tar.gz
jgit-009507ca2eafe1c6218ca3779348452495dcd3a3.zip
Merge "Exclude FindBugs warning about uninitialized read"
-rw-r--r--org.eclipse.jgit/findBugs/FindBugsExcludeFilter.xml7
1 files changed, 7 insertions, 0 deletions
diff --git a/org.eclipse.jgit/findBugs/FindBugsExcludeFilter.xml b/org.eclipse.jgit/findBugs/FindBugsExcludeFilter.xml
index 4027ce7974..948308e778 100644
--- a/org.eclipse.jgit/findBugs/FindBugsExcludeFilter.xml
+++ b/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>