diff options
author | Leif Åstrand <leif@vaadin.com> | 2014-03-21 10:21:19 +0200 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2014-03-21 09:33:02 +0000 |
commit | 4f7c09daf43b29e8df9bbce61ff90e9facf78425 (patch) | |
tree | 9236365f0b530da80ce29712a934567141d7bf5a /server/src/com/vaadin/event | |
parent | a70ef27bb7b6e8c41a27041bdd1b794c95544be8 (diff) | |
download | vaadin-framework-4f7c09daf43b29e8df9bbce61ff90e9facf78425.tar.gz vaadin-framework-4f7c09daf43b29e8df9bbce61ff90e9facf78425.zip |
Remove all unnecessary semicolons reported by Eclipse
Change-Id: I15f6fff50e709238655a0a50f605a833e2be7d6f
Diffstat (limited to 'server/src/com/vaadin/event')
-rw-r--r-- | server/src/com/vaadin/event/FieldEvents.java | 2 | ||||
-rw-r--r-- | server/src/com/vaadin/event/ListenerMethod.java | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/server/src/com/vaadin/event/FieldEvents.java b/server/src/com/vaadin/event/FieldEvents.java index d0479eec05..61c342891b 100644 --- a/server/src/com/vaadin/event/FieldEvents.java +++ b/server/src/com/vaadin/event/FieldEvents.java @@ -325,6 +325,6 @@ public interface FieldEvents { public void focus() { fireEvent(new FocusEvent(component)); } - }; + } } diff --git a/server/src/com/vaadin/event/ListenerMethod.java b/server/src/com/vaadin/event/ListenerMethod.java index a0ecdc4769..20523920fd 100644 --- a/server/src/com/vaadin/event/ListenerMethod.java +++ b/server/src/com/vaadin/event/ListenerMethod.java @@ -98,7 +98,7 @@ public class ListenerMethod implements EventListener, Serializable { throw e; } - }; + } /* Special serialization to handle method references */ private void readObject(java.io.ObjectInputStream in) throws IOException, @@ -113,7 +113,7 @@ public class ListenerMethod implements EventListener, Serializable { } catch (SecurityException e) { getLogger().log(Level.SEVERE, "Internal deserialization error", e); } - }; + } private static Method findHighestMethod(Class<?> cls, String method, Class<?>[] paramTypes) { |