summaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit/findBugs
diff options
context:
space:
mode:
authorRobin Stocker <robin@nibor.org>2012-09-14 00:01:47 +0200
committerMatthias Sohn <matthias.sohn@sap.com>2012-09-14 00:01:47 +0200
commit187101808c7a2cf44494d32aa482cd8f84592c10 (patch)
treeadae851db21b93f6617f0cf8bd90c1b61ca5040a /org.eclipse.jgit/findBugs
parent0e56f347528fb333a344aaec126ea391ff18e43b (diff)
downloadjgit-187101808c7a2cf44494d32aa482cd8f84592c10.tar.gz
jgit-187101808c7a2cf44494d32aa482cd8f84592c10.zip
[findBugs] Silence warning about Transport initialization
Change-Id: I98fc9720106bcd873b330090bafde276508f8a40 Signed-off-by: Robin Stocker <robin@nibor.org> Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit/findBugs')
-rw-r--r--org.eclipse.jgit/findBugs/FindBugsExcludeFilter.xml6
1 files changed, 6 insertions, 0 deletions
diff --git a/org.eclipse.jgit/findBugs/FindBugsExcludeFilter.xml b/org.eclipse.jgit/findBugs/FindBugsExcludeFilter.xml
index b8f300740a..2efbb9c1a5 100644
--- a/org.eclipse.jgit/findBugs/FindBugsExcludeFilter.xml
+++ b/org.eclipse.jgit/findBugs/FindBugsExcludeFilter.xml
@@ -52,4 +52,10 @@
<Method name="toBooleanOrNull" />
<Bug pattern="NP_BOOLEAN_RETURN_NULL" />
</Match>
+
+ <!-- Transport initialization works like this -->
+ <Match>
+ <Class name="org.eclipse.jgit.transport.Transport" />
+ <Bug pattern="IC_SUPERCLASS_USES_SUBCLASS_DURING_INITIALIZATION" />
+ </Match>
</FindBugsFilter>