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/28 17:44:17 UTC

svn commit: r1128680 - /commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/SetPropertiesRule.java

Author: simonetripodi
Date: Sat May 28 15:44:17 2011
New Revision: 1128680

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

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

Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/SetPropertiesRule.java
URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/SetPropertiesRule.java?rev=1128680&r1=1128679&r2=1128680&view=diff
==============================================================================
--- commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/SetPropertiesRule.java (original)
+++ commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/SetPropertiesRule.java Sat May 28 15:44:17 2011
@@ -172,8 +172,13 @@ public class SetPropertiesRule
 
             if ( getDigester().getLogger().isDebugEnabled() )
             {
-                getDigester().getLogger().debug( "[SetPropertiesRule]{" + getDigester().getMatch()
-                                                     + "} Setting property '" + attributeName + "' to '" + value + "'" );
+                getDigester().getLogger().debug( "[SetPropertiesRule]{"
+                                                 + getDigester().getMatch()
+                                                 + "} Setting property '"
+                                                 + attributeName
+                                                 + "' to '"
+                                                 + value
+                                                 + "'" );
             }
 
             if ( ( !ignoreMissingProperty ) && ( attributeName != null ) )