You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by bo...@apache.org on 2007/05/12 22:41:53 UTC

svn commit: r537512 - /myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/webapp/TobagoResponseWriterWrapper.java

Author: bommel
Date: Sat May 12 13:41:52 2007
New Revision: 537512

URL: http://svn.apache.org/viewvc?view=rev&rev=537512
Log:
TOBAGO-393: Create OptimizedResponseWriter to move the non-standard-compliant optimization stuff to

Modified:
    myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/webapp/TobagoResponseWriterWrapper.java

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/webapp/TobagoResponseWriterWrapper.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/webapp/TobagoResponseWriterWrapper.java?view=diff&rev=537512&r1=537511&r2=537512
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/webapp/TobagoResponseWriterWrapper.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/webapp/TobagoResponseWriterWrapper.java Sat May 12 13:41:52 2007
@@ -59,7 +59,7 @@
 
   @Deprecated
   public void writeAttribute(String name, Object value, String property) throws IOException {
-    responseWriter.writeAttribute(name, value,property);
+    responseWriter.writeAttribute(name, value, property);
   }
 
   @Deprecated
@@ -76,7 +76,7 @@
   }
 
   public void writeClassAttribute() throws IOException {
-    responseWriter.writeAttribute(HtmlAttributes.CLASS, null,ATTR_STYLE_CLASS);
+    responseWriter.writeAttribute(HtmlAttributes.CLASS, null, ATTR_STYLE_CLASS);
   }
 
   public void writeStyleAttribute() throws IOException {