Author: markt Date: Sun Jun 16 23:19:53 2013 New Revision: 1493612 URL: http://svn.apache.org/r1493612 Log: More 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=1493612&r1=1493611&r2=1493612&view=diff ============================================================================== --- tomcat/trunk/res/findbugs/filter-false-positives.xml (original) +++ tomcat/trunk/res/findbugs/filter-false-positives.xml Sun Jun 16 23:19:53 2013 @@ -202,6 +202,20 @@ <!-- of lock upgrade that is used. --> <Class name="org.apache.coyote.http11.upgrade.AprServletOutputStream" /> <Method name="doWrite"/> + <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.InternalAprInputBuffer" /> + <Method name="doReadSocket"/> + <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.InternalAprOutputBuffer" /> + <Method name="writeToSocket"/> <Bug code="UL" /> </Match> <Match> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org