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

svn commit: r1125769 - /commons/sandbox/digester3/trunk/src/test/java/org/apache/commons/digester3/TestRuleSet.java

Author: simonetripodi
Date: Sat May 21 19:02:04 2011
New Revision: 1125769

URL: http://svn.apache.org/viewvc?rev=1125769&view=rev
Log:
just added if/else blocks

Modified:
    commons/sandbox/digester3/trunk/src/test/java/org/apache/commons/digester3/TestRuleSet.java

Modified: commons/sandbox/digester3/trunk/src/test/java/org/apache/commons/digester3/TestRuleSet.java
URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/test/java/org/apache/commons/digester3/TestRuleSet.java?rev=1125769&r1=1125768&r2=1125769&view=diff
==============================================================================
--- commons/sandbox/digester3/trunk/src/test/java/org/apache/commons/digester3/TestRuleSet.java (original)
+++ commons/sandbox/digester3/trunk/src/test/java/org/apache/commons/digester3/TestRuleSet.java Sat May 21 19:02:04 2011
@@ -68,9 +68,13 @@ public class TestRuleSet
 
         super(namespaceURI);
         if ( prefix == null )
+        {
             this.prefix = "";
+        }
         else
+        {
             this.prefix = prefix;
+        }
 
     }