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 10:01:38 UTC

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

Author: simonetripodi
Date: Mon May 30 08:01:38 2011
New Revision: 1129035

URL: http://svn.apache.org/viewvc?rev=1129035&view=rev
Log:
fixed checkstyle violations
'(' is not followed by whitespace.
')' is not preceded with whitespace.	

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

Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/binder/AbstractParamTypeBuilder.java
URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/binder/AbstractParamTypeBuilder.java?rev=1129035&r1=1129034&r2=1129035&view=diff
==============================================================================
--- commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/binder/AbstractParamTypeBuilder.java (original)
+++ commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/binder/AbstractParamTypeBuilder.java Mon May 30 08:01:38 2011
@@ -59,7 +59,7 @@ abstract class AbstractParamTypeBuilder<
      * @param paramType The Java class of the method's argument
      * @return this builder instance
      */
-    public final AbstractParamTypeBuilder<R> withParameterType(Class<?> paramType)
+    public final AbstractParamTypeBuilder<R> withParameterType( Class<?> paramType )
     {
         if ( paramType == null )
         {