Author: markt Date: Fri Jan 14 16:48:44 2011 New Revision: 1059069 URL: http://svn.apache.org/viewvc?rev=1059069&view=rev Log: Add comments explaining false +ve
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=1059069&r1=1059068&r2=1059069&view=diff ============================================================================== --- tomcat/trunk/res/findbugs/filter-false-positives.xml (original) +++ tomcat/trunk/res/findbugs/filter-false-positives.xml Fri Jan 14 16:48:44 2011 @@ -17,16 +17,19 @@ <FindBugsFilter> <!-- Considered to be false positives --> <Match> + <!-- Have to trigger GC for leak detection to work. Clearly documented --> <Class name="org.apache.catalina.core.StandardHost" /> <Method name="findReloadedContextMemoryLeaks" /> <Bug code="Dm" /> </Match> <Match> + <!-- Sleep is short, needs to keep lock --> <Class name="org.apache.catalina.startup.HostConfig" /> <Method name="checkResources" /> <Bug code="SWL" /> </Match> <Match> + <!-- Class name needs to start with a lower case letter in this case --> <Class name="org.apache.naming.java.javaURLContextFactory" /> <Bug code="Nm" /> </Match> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org