On 07/06/2011 22:56, [email protected] wrote: > Author: kkolinko > Date: Tue Jun 7 21:56:16 2011 > New Revision: 1133170 > > URL: http://svn.apache.org/viewvc?rev=1133170&view=rev > Log: > Followup to r1133122 > if(flag) set flag:=false
Thanks for the catch. I inverted the logic and forget that one. Mark > > Modified: > tomcat/trunk/java/org/apache/jasper/compiler/TldLocationsCache.java > > Modified: tomcat/trunk/java/org/apache/jasper/compiler/TldLocationsCache.java > URL: > http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/jasper/compiler/TldLocationsCache.java?rev=1133170&r1=1133169&r2=1133170&view=diff > ============================================================================== > --- tomcat/trunk/java/org/apache/jasper/compiler/TldLocationsCache.java > (original) > +++ tomcat/trunk/java/org/apache/jasper/compiler/TldLocationsCache.java Tue > Jun 7 21:56:16 2011 > @@ -448,7 +448,7 @@ public class TldLocationsCache { > } else if (showTldScanWarning) { > // Not entirely thread-safe but a few duplicate log messages > are > // not a huge issue > - showTldScanWarning = true; > + showTldScanWarning = false; > log.info(Localizer.getMessage("jsp.tldCache.noTldSummary")); > } > } > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
