diff options
author | Leif Åstrand <leif@vaadin.com> | 2014-05-16 09:22:35 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2014-05-22 09:05:15 +0000 |
commit | a070c8a1d2d8103ab7c8e14c114b075208f2f10f (patch) | |
tree | f655ad523be6a2f372845c6c5e2f3bde37c8a7b9 /server/src/com | |
parent | 21f427ca0cc6fbf6d50aad0ce36eacd3cfe16ad3 (diff) | |
download | vaadin-framework-a070c8a1d2d8103ab7c8e14c114b075208f2f10f.tar.gz vaadin-framework-a070c8a1d2d8103ab7c8e14c114b075208f2f10f.zip |
Remove some unnecessary semicolons
Change-Id: I8698a9ecf691adde9a3bc2e92047be5f3036df1e
Diffstat (limited to 'server/src/com')
-rw-r--r-- | server/src/com/vaadin/server/JsonCodec.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/src/com/vaadin/server/JsonCodec.java b/server/src/com/vaadin/server/JsonCodec.java index eb11cde343..08345714fd 100644 --- a/server/src/com/vaadin/server/JsonCodec.java +++ b/server/src/com/vaadin/server/JsonCodec.java @@ -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 { |