You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by id...@apache.org on 2007/03/12 21:54:17 UTC

svn commit: r517391 - /myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/renderkit/TobagoRenderKit.java

Author: idus
Date: Mon Mar 12 13:54:16 2007
New Revision: 517391

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

Modified:
    myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/renderkit/TobagoRenderKit.java

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/renderkit/TobagoRenderKit.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/renderkit/TobagoRenderKit.java?view=diff&rev=517391&r1=517390&r2=517391
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/renderkit/TobagoRenderKit.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/renderkit/TobagoRenderKit.java Mon Mar 12 13:54:16 2007
@@ -70,8 +70,8 @@
       }
     }
     if (renderer == null) {
-      LOG.error("The class witch was found by the ResourceManager can't be "
-          + "found, or instanciated: rendererType='" + rendererType + "'");
+      LOG.error("The class which was found by the ResourceManager cannot be "
+          + "found or instantiated: classname='" + rendererType + "'");
     }
     return renderer;
   }