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 ) )


Reply via email to