]> source.dussan.org Git - vaadin-framework.git/commitdiff
Remove some unnecessary semicolons
authorLeif Åstrand <leif@vaadin.com>
Fri, 16 May 2014 06:22:35 +0000 (09:22 +0300)
committerVaadin Code Review <review@vaadin.com>
Thu, 22 May 2014 09:05:15 +0000 (09:05 +0000)
Change-Id: I8698a9ecf691adde9a3bc2e92047be5f3036df1e

server/src/com/vaadin/server/JsonCodec.java
server/tests/src/com/vaadin/ui/UIInitRefreshTest.java

index eb11cde3439631c2a1006189c20a6347c2d6e669..08345714fd1b05e916710303ba5b9c43b7abd360 100644 (file)
@@ -72,13 +72,13 @@ public class JsonCodec implements Serializable {
         public JSONArray put(Object value) {
             throw new UnsupportedOperationException(
                     "Immutable empty JSONArray.");
-        };
+        }
 
         @Override
         public JSONArray put(int index, Object value) {
             throw new UnsupportedOperationException(
                     "Immutable empty JSONArray.");
-        };
+        }
     };
 
     public static interface BeanProperty extends Serializable {
index e4b31ca4873c882ef9244a474efb4484cef7a502..9e1fabc58ff11a005c268300ac0d4179d018da45 100644 (file)
@@ -75,7 +75,7 @@ public class UIInitRefreshTest {
             Assert.assertEquals("bar", event.getUriFragment());
             fragmentChangeCalled = true;
         }
-    };
+    }
 
     @Before
     public void setUp() {