aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShawn Pearce <spearce@spearce.org>2010-10-29 10:50:07 -0400
committerCode Review <codereview-daemon@eclipse.org>2010-10-29 10:50:07 -0400
commitb216c80255cd2a67874da4b0877bc9542ab37a55 (patch)
tree13cafa3b59c5bad303c46983ab503f8f621e7bf7
parenta4341720798c2e68f9a1c2230c35d120e121a2e5 (diff)
parent90c11cbaeb83ee9b02238cbd2c0e5bcf68068772 (diff)
downloadjgit-b216c80255cd2a67874da4b0877bc9542ab37a55.tar.gz
jgit-b216c80255cd2a67874da4b0877bc9542ab37a55.zip
Merge "Exclude FindBugs warnings about Cloneable"
-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 0383ad9b87..4027ce7974 100644
--- a/org.eclipse.jgit/findBugs/FindBugsExcludeFilter.xml
+++ b/org.eclipse.jgit/findBugs/FindBugsExcludeFilter.xml
@@ -24,4 +24,11 @@
<Class name="org.eclipse.jgit.util.StringUtils" />
<Bug pattern="ES_COMPARING_PARAMETER_STRING_WITH_EQ" />
</Match>
+
+ <!-- We want complete control over clone behavior and
+ don't want to use Object's clone implementation.
+ -->
+ <Match>
+ <Bug pattern="CN_IMPLEMENTS_CLONE_BUT_NOT_CLONEABLE" />
+ </Match>
</FindBugsFilter>