Author: markt
Date: Thu Jan 17 15:25:59 2013
New Revision: 1434722

URL: http://svn.apache.org/viewvc?rev=1434722&view=rev
Log:
Suppress a couple of false positives

Modified:
    tomcat/trunk/res/findbugs/filter-false-positives.xml

Modified: tomcat/trunk/res/findbugs/filter-false-positives.xml
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/res/findbugs/filter-false-positives.xml?rev=1434722&r1=1434721&r2=1434722&view=diff
==============================================================================
--- tomcat/trunk/res/findbugs/filter-false-positives.xml (original)
+++ tomcat/trunk/res/findbugs/filter-false-positives.xml Thu Jan 17 15:25:59 
2013
@@ -174,6 +174,20 @@
     <Bug code="UG" />
   </Match>
   <Match>
+    <!-- Locks are always released. Non-standard pattern is required because 
-->
+    <!-- of lock upgrade that is used. -->
+    <Class name="org.apache.coyote.http11.upgrade.AprServletInputStream" />
+    <Method name="doRead"/>
+    <Bug code="UL" />
+  </Match>
+  <Match>
+    <!-- Locks are always released. Non-standard pattern is required because 
-->
+    <!-- of lock upgrade that is used. -->
+    <Class name="org.apache.coyote.http11.upgrade.AprServletOutputStream" />
+    <Method name="doWrite"/>
+    <Bug code="UL" />
+  </Match>
+  <Match>
     <!-- JspC will not be used under a security manager -->
     <Class name="org.apache.jasper.JspC"/>
     <Method name="initClassLoader"/>



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to