diff options
author | Robin Stocker <robin@nibor.org> | 2010-10-28 17:38:16 +0200 |
---|---|---|
committer | Robin Stocker <robin@nibor.org> | 2010-10-28 17:38:16 +0200 |
commit | a7a0e17b2bae447acf56330edd7648c91b80c27e (patch) | |
tree | 9d2822b9771651b9b8ba06b8a331e584c2556f91 /org.eclipse.jgit/findBugs | |
parent | 79ca8a2d19fb536c15219a1856aa23b00e9344ff (diff) | |
download | jgit-a7a0e17b2bae447acf56330edd7648c91b80c27e.tar.gz jgit-a7a0e17b2bae447acf56330edd7648c91b80c27e.zip |
Fix FQCN of moved classes in FindBugsExcludeFilter.xml
FindBugs would generate warnings for these even though they should
be ignored.
Change-Id: Ieccadbf11fd55853541c04857d8e79a4db014cb4
Diffstat (limited to 'org.eclipse.jgit/findBugs')
-rw-r--r-- | org.eclipse.jgit/findBugs/FindBugsExcludeFilter.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.jgit/findBugs/FindBugsExcludeFilter.xml b/org.eclipse.jgit/findBugs/FindBugsExcludeFilter.xml index ba9d1d0996..0383ad9b87 100644 --- a/org.eclipse.jgit/findBugs/FindBugsExcludeFilter.xml +++ b/org.eclipse.jgit/findBugs/FindBugsExcludeFilter.xml @@ -4,7 +4,7 @@ memory mapped segments if the JVM heap is out of address space. --> <Match> - <Class name="org.eclipse.jgit.lib.PackFile" /> + <Class name="org.eclipse.jgit.storage.file.PackFile" /> <Method name="mmap" /> <Bug pattern="DM_GC" /> </Match> @@ -21,7 +21,7 @@ here with == assuming .equals() style equality. --> <Match> - <Class name="org.eclipse.jgit.lib.util.StringUtils" /> + <Class name="org.eclipse.jgit.util.StringUtils" /> <Bug pattern="ES_COMPARING_PARAMETER_STRING_WITH_EQ" /> </Match> </FindBugsFilter> |