This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 10.1.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/10.1.x by this push: new cd467232d5 Fix order (alphabetical) cd467232d5 is described below commit cd467232d5daa97e52022ac661397c4d0f873a84 Author: Mark Thomas <ma...@apache.org> AuthorDate: Thu Apr 13 15:08:05 2023 +0100 Fix order (alphabetical) --- res/spotbugs/filter-false-positives.xml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/res/spotbugs/filter-false-positives.xml b/res/spotbugs/filter-false-positives.xml index daeb5e7d61..ffd23482b1 100644 --- a/res/spotbugs/filter-false-positives.xml +++ b/res/spotbugs/filter-false-positives.xml @@ -2564,6 +2564,18 @@ <Bug pattern="UW_UNCOND_WAIT " /> </Or> </Match> + <Match> + <!-- Array contents is not mutated --> + <Class name="org.apache.tomcat.websocket.pojo.TestEncodingDecoding$MsgByte"/> + <Field name="data"/> + <Bug pattern="VO_VOLATILE_REFERENCE_TO_ARRAY"/> + </Match> + <Match> + <!-- Statics are used deliberately as they are simpler --> + <Class name="org.apache.tomcat.websocket.server.TestClose" /> + <Method name="setUp" /> + <Bug pattern="ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD"/> + </Match> <Match> <!-- Statics are used deliberately as they are simpler --> <Class name="org.apache.tomcat.websocket.server.TestWsRemoteEndpointImplServerDeadlock" /> @@ -2604,18 +2616,6 @@ </Or> <Bug pattern="ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD"/> </Match> - <Match> - <!-- Array contents is not mutated --> - <Class name="org.apache.tomcat.websocket.pojo.TestEncodingDecoding$MsgByte"/> - <Field name="data"/> - <Bug pattern="VO_VOLATILE_REFERENCE_TO_ARRAY"/> - </Match> - <Match> - <!-- Statics are used deliberately as they are simpler --> - <Class name="org.apache.tomcat.websocket.server.TestClose" /> - <Method name="setUp" /> - <Bug pattern="ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD"/> - </Match> <Match> <!-- Code is deliberately unused --> <Class name="org.apache.tomcat.websocket.server.TestUriTemplate" /> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org