Author: dion
Date: Mon Jun 27 01:14:49 2005
New Revision: 201960

URL: http://svn.apache.org/viewcvs?rev=201960&view=rev
Log:
Remove else

Modified:
    
jakarta/commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/tags/junit/SuiteTag.java

Modified: 
jakarta/commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/tags/junit/SuiteTag.java
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/tags/junit/SuiteTag.java?rev=201960&r1=201959&r2=201960&view=diff
==============================================================================
--- 
jakarta/commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/tags/junit/SuiteTag.java
 (original)
+++ 
jakarta/commons/proper/jelly/trunk/src/test/org/apache/commons/jelly/tags/junit/SuiteTag.java
 Mon Jun 27 01:14:49 2005
@@ -107,8 +107,6 @@
         if ( name == null ) {
             return new TestSuite();
         }
-        else {
-            return new TestSuite(name);
-        }
+        return new TestSuite(name);
     }
 }



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to