Hello

I have a small problem with Tomcat 4.1.


In my jsp page there is this line:

<%= getChainString(flow, messages, locale) %><% if (i < steps.size() -1) { //not last 
%>,<% }


Tomcat 4.0.4 creates this code:
-------------------------------
// begin [file="/menu.jsp";from=(73,7);to=(73,47)]
out.print( getChainString(flow, messages, locale) );
// end
// begin [file="/menu.jsp";from=(73,51);to=(73,90)]
if (i < steps.size() -1) { //not last 
// end
// HTML // begin [file="/menu.jsp";from=(73,92);to=(73,93)]
out.write(",");

// end
// begin [file="/menu.jsp";from=(73,95);to=(75,8)]
}



Here the 4.1 code:
------------------
 out.print( getChainString(flow, messages, locale) );
 if (i < steps.size() -1) { //not last           out.write(",");
 }
 
 
 The problem ist that the out.write statement is commented out.
 Does anyone know what is the right behavior?
 
 Regards
 Ralph


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

Reply via email to