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:02:21 UTC

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

Author: simonetripodi
Date: Mon May 30 09:02:21 2011
New Revision: 1129078

URL: http://svn.apache.org/viewvc?rev=1129078&view=rev
Log:
fixed checkstyle violation: ')' is not preceded with whitespace.	

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=1129078&r1=1129077&r2=1129078&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:02:21 2011
@@ -151,7 +151,7 @@ public final class FactoryCreateBuilder
                          "at least one between 'className', 'attributeName' or 'creationFactory' has to be specified" );
         }
 
-        if ( type != null || attributeName != null)
+        if ( type != null || attributeName != null )
         {
             return new FactoryCreateRule( type, attributeName, ignoreCreateExceptions );
         }