And an extra t also :). 
Ought to follow the spec's name for the attribute, so:
setDeferredSyntaxAllowedAsLiteral
isDeferredSyntaxAllowedAsLiteral





Tim Funk <[EMAIL PROTECTED]> 
09/19/2006 06:33 AM
Please respond to
"Tomcat Developers List" <[email protected]>


To
Tomcat Developers List <[email protected]>
cc

Subject
Re: svn commit: r447793 - 
/tomcat/tc6.0.x/trunk/java/org/apache/jasper/compiler/Compiler.java






Is there a reason deferred is spelled 2 different ways? (One with an 
extra f)

setDeferredSyntaxAllowedAsLiteral vs
 isDefferedSyntaxAllowedAsLitteral


-Tim

[EMAIL PROTECTED] wrote:
> Author: remm
> Date: Tue Sep 19 02:47:32 2006
> New Revision: 447793
>
> URL: http://svn.apache.org/viewvc?view=rev&rev=447793
> Log:
> - Pass the two new values to the PageInfo instance.
>
> Modified:
>     tomcat/tc6.0.x/trunk/java/org/apache/jasper/compiler/Compiler.java
>
> Modified: 
tomcat/tc6.0.x/trunk/java/org/apache/jasper/compiler/Compiler.java
> URL: 
http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/java/org/apache/jasper/compiler/Compiler.java?view=diff&rev=447793&r1=447792&r2=447793

> 
==============================================================================
> --- tomcat/tc6.0.x/trunk/java/org/apache/jasper/compiler/Compiler.java 
(original)
> +++ tomcat/tc6.0.x/trunk/java/org/apache/jasper/compiler/Compiler.java 
Tue Sep 19 02:47:32 2006
> @@ -129,6 +129,14 @@
>          if (jspProperty.getIncludeCoda() != null) {
>              pageInfo.setIncludeCoda(jspProperty.getIncludeCoda());
>          }
> +        if (jspProperty.isDefferedSyntaxAllowedAsLitteral() != null) {
> + 
pageInfo.setDeferredSyntaxAllowedAsLiteral(JspUtil.booleanValue(jspProperty
> +                    .isDefferedSyntaxAllowedAsLitteral()));
> +        }
> +        if (jspProperty.isTrimDirectiveWhitespaces() != null) {
> + pageInfo.setTrimDirectiveWhitespaces(JspUtil.booleanValue(jspProperty
> +                    .isTrimDirectiveWhitespaces()));
> +        }
> 
 

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Reply via email to