This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch 8.5.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git

commit 1f89e6ba32591847c5006678ba47c31328e65e9f
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Wed Nov 30 18:33:56 2022 +0000

    Update false positives
---
 res/spotbugs/filter-false-positives.xml | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/res/spotbugs/filter-false-positives.xml 
b/res/spotbugs/filter-false-positives.xml
index 991374f557..8405047bc8 100644
--- a/res/spotbugs/filter-false-positives.xml
+++ b/res/spotbugs/filter-false-positives.xml
@@ -902,6 +902,12 @@
     <Method name="process" />
     <Bug pattern="AT_OPERATION_SEQUENCE_ON_CONCURRENT_ABSTRACTION" />
   </Match>
+  <Match>
+    <!-- Method is package private in 9.0.x onwards -->
+    <Class name="org.apache.coyote.AsyncStateMachine" />
+    <Method name="recycle" />
+    <Bug pattern="PS_PUBLIC_SEMAPHORES" />
+  </Match>
   <Match>
     <!-- readChunk will not be null due to previous call to readBytes() -->
     <Class name="org.apache.coyote.http11.filters.ChunkedInputFilter" />
@@ -1295,6 +1301,11 @@
     </Or>
     <Bug pattern="IS2_INCONSISTENT_SYNC" />
   </Match>
+  <Match>
+    <!-- Public API is a design decision of Commons -->
+    <Class name="org.apache.tomcat.dbcp.pool2.impl.SoftReferenceObjectPool" />
+    <Bug pattern="PS_PUBLIC_SEMAPHORES" />
+  </Match>
   <Match>
     <!-- Return value is ignored but a null result will trigger an exception 
-->
     <Class name="org.apache.tomcat.jdbc.pool.ConnectionPool$ConnectionFuture" 
/>


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

Reply via email to