You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by im...@apache.org on 2006/05/01 10:30:55 UTC

svn commit: r398548 - /myfaces/core/branches/1_1_3/impl/src/main/java/org/apache/myfaces/application/jsp/JspStateManagerImpl.java

Author: imario
Date: Mon May  1 01:30:53 2006
New Revision: 398548

URL: http://svn.apache.org/viewcvs?rev=398548&view=rev
Log:
fixed jdk1.5 method

Modified:
    myfaces/core/branches/1_1_3/impl/src/main/java/org/apache/myfaces/application/jsp/JspStateManagerImpl.java

Modified: myfaces/core/branches/1_1_3/impl/src/main/java/org/apache/myfaces/application/jsp/JspStateManagerImpl.java
URL: http://svn.apache.org/viewcvs/myfaces/core/branches/1_1_3/impl/src/main/java/org/apache/myfaces/application/jsp/JspStateManagerImpl.java?rev=398548&r1=398547&r2=398548&view=diff
==============================================================================
--- myfaces/core/branches/1_1_3/impl/src/main/java/org/apache/myfaces/application/jsp/JspStateManagerImpl.java (original)
+++ myfaces/core/branches/1_1_3/impl/src/main/java/org/apache/myfaces/application/jsp/JspStateManagerImpl.java Mon May  1 01:30:53 2006
@@ -407,7 +407,7 @@
         }
         intBuf.append("]");
 
-        buf.insert(0,intBuf);
+        buf.insert(0,intBuf.toString());
 
         if(component!=null)
         {