Author: konstantin.mishin
Date: 2010-01-14 10:46:34 -0500 (Thu, 14 Jan 2010)
New Revision: 16295
Modified:
branches/enterprise/3.3.X/framework/impl/src/main/java/org/ajax4jsf/renderkit/compiler/ClassElement.java
Log:
RFPL-227
porting RF-7992 to enterprise branch
Modified:
branches/enterprise/3.3.X/framework/impl/src/main/java/org/ajax4jsf/renderkit/compiler/ClassElement.java
===================================================================
---
branches/enterprise/3.3.X/framework/impl/src/main/java/org/ajax4jsf/renderkit/compiler/ClassElement.java 2010-01-14
15:34:15 UTC (rev 16294)
+++
branches/enterprise/3.3.X/framework/impl/src/main/java/org/ajax4jsf/renderkit/compiler/ClassElement.java 2010-01-14
15:46:34 UTC (rev 16295)
@@ -56,7 +56,8 @@
* @see
org.ajax4jsf.renderkit.compiler.ElementBase#encode(org.ajax4jsf.renderkit.compiler.TemplateContext)
*/
public void encode(TemplateContext context) throws IOException {
- context.getWriter().writeText(getString(context), null);
+ // To fix
https://jira.jboss.org/jira/browse/RF-7992 , writeText was replaced by
'write'
+ context.getWriter().write(getString(context));
}
/**