You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2009/02/17 15:02:16 UTC

svn commit: r745077 - in /commons/proper/beanutils/trunk/src/test/org/apache/commons/beanutils: WrapDynaBeanTestCase.java bugs/Jira157TestCase.java

Author: sebb
Date: Tue Feb 17 14:02:16 2009
New Revision: 745077

URL: http://svn.apache.org/viewvc?rev=745077&view=rev
Log:
Unnecessary ;

Modified:
    commons/proper/beanutils/trunk/src/test/org/apache/commons/beanutils/WrapDynaBeanTestCase.java
    commons/proper/beanutils/trunk/src/test/org/apache/commons/beanutils/bugs/Jira157TestCase.java

Modified: commons/proper/beanutils/trunk/src/test/org/apache/commons/beanutils/WrapDynaBeanTestCase.java
URL: http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/test/org/apache/commons/beanutils/WrapDynaBeanTestCase.java?rev=745077&r1=745076&r2=745077&view=diff
==============================================================================
--- commons/proper/beanutils/trunk/src/test/org/apache/commons/beanutils/WrapDynaBeanTestCase.java (original)
+++ commons/proper/beanutils/trunk/src/test/org/apache/commons/beanutils/WrapDynaBeanTestCase.java Tue Feb 17 14:02:16 2009
@@ -103,7 +103,7 @@
             Object result = bean.get("invalidProperty");
             fail("Invalid get should have thrown IllegalArgumentException");
         } catch (IllegalArgumentException t) {
-            ; // Expected result
+            // Expected result
         }
 
         // Invalid setter
@@ -111,7 +111,7 @@
             bean.set("invalidProperty", "XYZ");
             fail("Invalid set should have thrown IllegalArgumentException");
         } catch (IllegalArgumentException t) {
-            ; // Expected result
+            // Expected result
         }
 
         // Set up initial Value
@@ -143,7 +143,7 @@
             Object result = bean.get("invalidProperty", 0);
             fail("Invalid get should have thrown IllegalArgumentException");
         } catch (IllegalArgumentException t) {
-            ; // Expected result
+            // Expected result
         }
 
         // Invalid setter
@@ -151,7 +151,7 @@
             bean.set("invalidProperty", 0, "XYZ");
             fail("Invalid set should have thrown IllegalArgumentException");
         } catch (IllegalArgumentException t) {
-            ; // Expected result
+            // Expected result
         }
 
         // Set up initial Value

Modified: commons/proper/beanutils/trunk/src/test/org/apache/commons/beanutils/bugs/Jira157TestCase.java
URL: http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/src/test/org/apache/commons/beanutils/bugs/Jira157TestCase.java?rev=745077&r1=745076&r2=745077&view=diff
==============================================================================
--- commons/proper/beanutils/trunk/src/test/org/apache/commons/beanutils/bugs/Jira157TestCase.java (original)
+++ commons/proper/beanutils/trunk/src/test/org/apache/commons/beanutils/bugs/Jira157TestCase.java Tue Feb 17 14:02:16 2009
@@ -165,7 +165,7 @@
     public static interface XY {
         String getX();
         String getY();
-    };
+    }
 
     public static class FooBar {
         String getPackageFoo() {
@@ -180,5 +180,5 @@
         public String getPublicFoo() {
             return "PublicFoo Value";
         }
-    };
+    }
 }