You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@click.apache.org by sa...@apache.org on 2009/01/20 13:39:35 UTC

svn commit: r736004 - /incubator/click/trunk/click/framework/src/org/apache/click/util/ContainerUtils.java

Author: sabob
Date: Tue Jan 20 04:39:35 2009
New Revision: 736004

URL: http://svn.apache.org/viewvc?rev=736004&view=rev
Log:
fixed error message

Modified:
    incubator/click/trunk/click/framework/src/org/apache/click/util/ContainerUtils.java

Modified: incubator/click/trunk/click/framework/src/org/apache/click/util/ContainerUtils.java
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/framework/src/org/apache/click/util/ContainerUtils.java?rev=736004&r1=736003&r2=736004&view=diff
==============================================================================
--- incubator/click/trunk/click/framework/src/org/apache/click/util/ContainerUtils.java (original)
+++ incubator/click/trunk/click/framework/src/org/apache/click/util/ContainerUtils.java Tue Jan 20 04:39:35 2009
@@ -586,7 +586,7 @@
                 HtmlStringBuffer buffer = new HtmlStringBuffer();
                 logBasicDescription(buffer, object, path, property);
                 buffer.append("Attempt to construct instance of class '");
-                buffer.append(targetClass.getName()).append(" resulted in error: '");
+                buffer.append(targetClass.getName()).append("' resulted in error: '");
                 buffer.append(targetClass.getName()).append("' does not seem");
                 buffer.append(" to have a default no argument constrcutor.");
                 buffer.append(" Please note another common problem is that the");