Author: sebb
Date: Wed Apr 24 18:12:28 2013
New Revision: 1471572

URL: http://svn.apache.org/r1471572
Log:
Unnecessary ;

Modified:
    
commons/proper/chain/trunk/core/src/main/java/org/apache/commons/chain2/generic/DispatchLookupCommand.java
    
commons/proper/chain/trunk/core/src/test/java/org/apache/commons/chain2/impl/ChainBaseTestCase.java
    
commons/proper/chain/trunk/core/src/test/java/org/apache/commons/chain2/impl/ContextBaseTestCase.java
    
commons/proper/chain/trunk/core/src/test/java/org/apache/commons/chain2/impl/TestContextTestCase.java

Modified: 
commons/proper/chain/trunk/core/src/main/java/org/apache/commons/chain2/generic/DispatchLookupCommand.java
URL: 
http://svn.apache.org/viewvc/commons/proper/chain/trunk/core/src/main/java/org/apache/commons/chain2/generic/DispatchLookupCommand.java?rev=1471572&r1=1471571&r2=1471572&view=diff
==============================================================================
--- 
commons/proper/chain/trunk/core/src/main/java/org/apache/commons/chain2/generic/DispatchLookupCommand.java
 (original)
+++ 
commons/proper/chain/trunk/core/src/main/java/org/apache/commons/chain2/generic/DispatchLookupCommand.java
 Wed Apr 24 18:12:28 2013
@@ -65,7 +65,7 @@ public class DispatchLookupCommand<K, V,
      * This property can be set later using <code>setProperty</code>, or if it 
is not set,
      * the static singleton instance from 
<code>CatalogFactory.getInstance()</code> will be used.
      */
-    public DispatchLookupCommand() {  super();  };
+    public DispatchLookupCommand() {  super();  }
 
     /**
      * Create an instance and initialize the <code>catalogFactory</code> 
property

Modified: 
commons/proper/chain/trunk/core/src/test/java/org/apache/commons/chain2/impl/ChainBaseTestCase.java
URL: 
http://svn.apache.org/viewvc/commons/proper/chain/trunk/core/src/test/java/org/apache/commons/chain2/impl/ChainBaseTestCase.java?rev=1471572&r1=1471571&r2=1471572&view=diff
==============================================================================
--- 
commons/proper/chain/trunk/core/src/test/java/org/apache/commons/chain2/impl/ChainBaseTestCase.java
 (original)
+++ 
commons/proper/chain/trunk/core/src/test/java/org/apache/commons/chain2/impl/ChainBaseTestCase.java
 Wed Apr 24 18:12:28 2013
@@ -151,7 +151,7 @@ public class ChainBaseTestCase {
         try {
             chain.execute(context);
         } catch (IllegalStateException e) {
-            ; // Expected result
+            // Expected result
         } catch (Exception e) {
             fail("Threw exception: " + e);
         }

Modified: 
commons/proper/chain/trunk/core/src/test/java/org/apache/commons/chain2/impl/ContextBaseTestCase.java
URL: 
http://svn.apache.org/viewvc/commons/proper/chain/trunk/core/src/test/java/org/apache/commons/chain2/impl/ContextBaseTestCase.java?rev=1471572&r1=1471571&r2=1471572&view=diff
==============================================================================
--- 
commons/proper/chain/trunk/core/src/test/java/org/apache/commons/chain2/impl/ContextBaseTestCase.java
 (original)
+++ 
commons/proper/chain/trunk/core/src/test/java/org/apache/commons/chain2/impl/ContextBaseTestCase.java
 Wed Apr 24 18:12:28 2013
@@ -197,7 +197,7 @@ public class ContextBaseTestCase {
             keySet.add("bop");
             fail("Should have thrown UnsupportedOperationException");
         } catch (UnsupportedOperationException e) {
-            ; // Expected result
+            // Expected result
         }
         try {
             Collection<String> adds = new ArrayList<String>();
@@ -205,7 +205,7 @@ public class ContextBaseTestCase {
             keySet.addAll(adds);
             fail("Should have thrown UnsupportedOperationException");
         } catch (UnsupportedOperationException e) {
-            ; // Expected result
+            // Expected result
         }
 
         // Before-modification checks

Modified: 
commons/proper/chain/trunk/core/src/test/java/org/apache/commons/chain2/impl/TestContextTestCase.java
URL: 
http://svn.apache.org/viewvc/commons/proper/chain/trunk/core/src/test/java/org/apache/commons/chain2/impl/TestContextTestCase.java?rev=1471572&r1=1471571&r2=1471572&view=diff
==============================================================================
--- 
commons/proper/chain/trunk/core/src/test/java/org/apache/commons/chain2/impl/TestContextTestCase.java
 (original)
+++ 
commons/proper/chain/trunk/core/src/test/java/org/apache/commons/chain2/impl/TestContextTestCase.java
 Wed Apr 24 18:12:28 2013
@@ -77,7 +77,7 @@ public class TestContextTestCase extends
             context.put("readOnly", "new readOnly");
             fail("Should have thrown UnsupportedOperationException");
         } catch (UnsupportedOperationException e) {
-            ; // Expected result
+            // Expected result
         }
         assertEquals("readOnly unchanged", "readOnly",
                      (String) context.get("readOnly"));


Reply via email to