System:
ME 2.6.4
E 2.1.2
JDK 1.4.2_02
Gentoo Linux 1.4, 2.4.23 Kernel, KDE 3.1.4
If I format the following JSP file:
<%@ include file="../includes/FormError.jsp" %>
<%@ include file="../includes/PageContent.jsp" %>
<TABLE border="0" cellpadding="10" cellspacing="0" class="PageContent" width="100%">
<TR class="PageContentSecondaryHeaderBG">
<TD class="PageContentSecondaryHeader">
<P class="PageContentSecondaryHeader">
</P>
</TD>
</TR>
</TABLE>
<%--
<%@ include file="../includes/ExperimentGroupListing.jsp" %>
<%@ include file="../includes/UserExperiments.jsp" %>
--%>
it gets turned into this:
<%@ include file="../includes/FormError.jsp" %> <%@ include file="../includes/PageContent.jsp" %> <table border="0" cellpadding="10" cellspacing="0" class="PageContent" width="100%"> <tr class="PageContentSecondaryHeaderBG"> <td class="PageContentSecondaryHeader"> <p class="PageContentSecondaryHeader"> </p> </td> </tr> </table> <%--
<%@ include file="../includes/ExperimentGroupListing.jsp" %>
<%@ include file="../includes/UserExperiments.jsp" %>
--%>
Any thoughts?