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 8e05e9f901bc7f5225bf8823e0edcf55dbebc43a
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Fri Mar 6 12:49:26 2020 +0000

    A handful of additional false positives
---
 res/findbugs/filter-false-positives.xml | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/res/findbugs/filter-false-positives.xml 
b/res/findbugs/filter-false-positives.xml
index 23c272a..ba2e9a2 100644
--- a/res/findbugs/filter-false-positives.xml
+++ b/res/findbugs/filter-false-positives.xml
@@ -1458,6 +1458,21 @@
     <Bug code="SF" />
   </Match>
   <Match>
+    <!-- Single condition. notify() is OK -->
+    <Class name="org.apache.tomcat.util.net.SocketWrapperBase" />
+    <Method name="vectoredOperation"/>
+    <Bug pattern="WA_NOT_IN_LOOP" />
+  </Match>
+  <Match>
+    <!-- Single condition. notify() is OK -->
+    <Class 
name="org.apache.tomcat.util.net.SocketWrapperBase$VectoredIOCompletionHandler" 
/>
+    <Or>
+      <Method name="completed"/>
+      <Method name="failed"/>
+    </Or>
+    <Bug pattern="NO_NOTIFY_NOT_NOTIFYALL" />
+  </Match>
+  <Match>
     <!-- Stream will be closed -->
     <Class name="org.apache.tomcat.util.net.jsse.PEMFile" />
     <Method name="&lt;init&gt;" />


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

Reply via email to