You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by nd...@apache.org on 2009/10/11 05:41:06 UTC

svn commit: r824009 - /harmony/enhanced/classlib/trunk/modules/luni/make/findbugs-exclude-filter.xml

Author: ndbeyer
Date: Sun Oct 11 03:41:06 2009
New Revision: 824009

URL: http://svn.apache.org/viewvc?rev=824009&view=rev
Log:
add exclusion for ReferenceQueue public semaphore warning

Modified:
    harmony/enhanced/classlib/trunk/modules/luni/make/findbugs-exclude-filter.xml

Modified: harmony/enhanced/classlib/trunk/modules/luni/make/findbugs-exclude-filter.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/luni/make/findbugs-exclude-filter.xml?rev=824009&r1=824008&r2=824009&view=diff
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/luni/make/findbugs-exclude-filter.xml (original)
+++ harmony/enhanced/classlib/trunk/modules/luni/make/findbugs-exclude-filter.xml Sun Oct 11 03:41:06 2009
@@ -23,6 +23,11 @@
     -->
 
 <FindBugsFilter>
+    <!-- Public semaphore in ReferenceQueue is okay -->
+    <Match>
+        <Class name="java.lang.ref.ReferenceQueue"></Class>
+        <Bug pattern="PS_PUBLIC_SEMAPHORES"></Bug>
+    </Match>
 
     <!-- Number classes should be able to call Number constructors -->
     <Match>