You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by si...@apache.org on 2011/05/30 11:01:30 UTC

svn commit: r1129076 - /commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/binder/FactoryCreateBuilder.java

Author: simonetripodi
Date: Mon May 30 09:01:30 2011
New Revision: 1129076

URL: http://svn.apache.org/viewvc?rev=1129076&view=rev
Log:
fixed checkstyle violation: Line is longer than 120 characters.	

Modified:
    commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/binder/FactoryCreateBuilder.java

Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/binder/FactoryCreateBuilder.java
URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/binder/FactoryCreateBuilder.java?rev=1129076&r1=1129075&r2=1129076&view=diff
==============================================================================
--- commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/binder/FactoryCreateBuilder.java (original)
+++ commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/binder/FactoryCreateBuilder.java Mon May 30 09:01:30 2011
@@ -148,7 +148,7 @@ public final class FactoryCreateBuilder
         if ( type == null && attributeName == null && creationFactory == null )
         {
             reportError( "factoryCreate()",
-                         "at least one between 'className' ar 'attributeName' or 'creationFactory' has to be specified" );
+                         "at least one between 'className', 'attributeName' or 'creationFactory' has to be specified" );
         }
 
         if ( type != null || attributeName != null)