Author: markt Date: Wed Nov 21 14:58:18 2018 New Revision: 1847114 URL: http://svn.apache.org/viewvc?rev=1847114&view=rev Log: Remove some false positives from the results
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=1847114&r1=1847113&r2=1847114&view=diff ============================================================================== --- tomcat/trunk/res/findbugs/filter-false-positives.xml (original) +++ tomcat/trunk/res/findbugs/filter-false-positives.xml Wed Nov 21 14:58:18 2018 @@ -952,6 +952,14 @@ <Bug code="Nm" /> </Match> <Match> + <!-- Utility classes used to import/export l10n strings --> + <!-- This code does not need to be robust --> + <Or> + <Class name="org.apache.tomcat.buildutil.translate.Export"/> + <Class name="org.apache.tomcat.buildutil.translate.Import"/> + </Or> + </Match> + <Match> <!-- Return value is never used --> <Class name="org.apache.tomcat.dbcp.dbcp2.DelegatingConnection" /> <Method name="prepareStatement" /> @@ -1247,6 +1255,15 @@ <Bug pattern="SR_NOT_CHECKED" /> </Match> <Match> + <!-- Generated code --> + <Or> + <Class name="org.apache.tomcat.util.json.JSONParser"/> + <Class name="org.apache.tomcat.util.json.JSONParserTokenManager"/> + <Class name="org.apache.tomcat.util.json.ParseException"/> + <Class name="org.apache.tomcat.util.json.TokenMgrError"/> + </Or> + </Match> + <Match> <!-- Hiding of field in superclass is deliberate --> <Class name="org.apache.tomcat.util.modeler.NotificationInfo"/> <Field name="info" /> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org