diff options
author | Shawn Pearce <spearce@spearce.org> | 2010-11-01 17:24:20 -0400 |
---|---|---|
committer | Code Review <codereview-daemon@eclipse.org> | 2010-11-01 17:24:20 -0400 |
commit | 009507ca2eafe1c6218ca3779348452495dcd3a3 (patch) | |
tree | 0042c6a147743f5f54f1785195f60c5745a25a5f | |
parent | aa09599a3d15e94d1fb317f65155ce22e6d9fc58 (diff) | |
parent | b70d8853f891302a35ab41ff6ad83b069b644730 (diff) | |
download | jgit-009507ca2eafe1c6218ca3779348452495dcd3a3.tar.gz jgit-009507ca2eafe1c6218ca3779348452495dcd3a3.zip |
Merge "Exclude FindBugs warning about uninitialized read"
-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 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> |