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 | |
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')
10 files changed, 12 insertions, 12 deletions
diff --git a/server/src/com/vaadin/data/util/ContainerHierarchicalWrapper.java b/server/src/com/vaadin/data/util/ContainerHierarchicalWrapper.java index 8022b4d571..bb592245f1 100644 --- a/server/src/com/vaadin/data/util/ContainerHierarchicalWrapper.java +++ b/server/src/com/vaadin/data/util/ContainerHierarchicalWrapper.java @@ -95,7 +95,7 @@ public class ContainerHierarchicalWrapper implements Container.Hierarchical, } return 0; } - }; + } /** * Constructs a new hierarchical wrapper for an existing Container. Works diff --git a/server/src/com/vaadin/data/util/ListSet.java b/server/src/com/vaadin/data/util/ListSet.java index 2563366229..55ef398b20 100644 --- a/server/src/com/vaadin/data/util/ListSet.java +++ b/server/src/com/vaadin/data/util/ListSet.java @@ -82,7 +82,7 @@ public class ListSet<E> extends ArrayList<E> { } else { return false; } - }; + } /** * Works as java.util.ArrayList#add(int, java.lang.Object) but returns diff --git a/server/src/com/vaadin/data/util/MethodProperty.java b/server/src/com/vaadin/data/util/MethodProperty.java index 3cba8c2eab..0464d50b62 100644 --- a/server/src/com/vaadin/data/util/MethodProperty.java +++ b/server/src/com/vaadin/data/util/MethodProperty.java @@ -108,7 +108,7 @@ public class MethodProperty<T> extends AbstractProperty<T> { out.writeObject(null); out.writeObject(null); } - }; + } /* Special serialization to handle method references */ private void readObject(java.io.ObjectInputStream in) throws IOException, @@ -142,7 +142,7 @@ public class MethodProperty<T> extends AbstractProperty<T> { } catch (NoSuchMethodException e) { getLogger().log(Level.SEVERE, "Internal deserialization error", e); } - }; + } /** * <p> diff --git a/server/src/com/vaadin/data/util/MethodPropertyDescriptor.java b/server/src/com/vaadin/data/util/MethodPropertyDescriptor.java index 7caebac317..007fdc4adc 100644 --- a/server/src/com/vaadin/data/util/MethodPropertyDescriptor.java +++ b/server/src/com/vaadin/data/util/MethodPropertyDescriptor.java @@ -122,7 +122,7 @@ public class MethodPropertyDescriptor<BT> implements } catch (NoSuchMethodException e) { getLogger().log(Level.SEVERE, "Internal deserialization error", e); } - }; + } @Override public String getName() { diff --git a/server/src/com/vaadin/data/util/filter/Compare.java b/server/src/com/vaadin/data/util/filter/Compare.java index ac167673bd..1396c46d36 100644 --- a/server/src/com/vaadin/data/util/filter/Compare.java +++ b/server/src/com/vaadin/data/util/filter/Compare.java @@ -37,7 +37,7 @@ public abstract class Compare implements Filter { public enum Operation { EQUAL, GREATER, LESS, GREATER_OR_EQUAL, LESS_OR_EQUAL - }; + } private final Object propertyId; private final Operation operation; 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) { diff --git a/server/src/com/vaadin/navigator/Navigator.java b/server/src/com/vaadin/navigator/Navigator.java index 540a3ee302..dbcec00ba9 100644 --- a/server/src/com/vaadin/navigator/Navigator.java +++ b/server/src/com/vaadin/navigator/Navigator.java @@ -794,7 +794,7 @@ public class Navigator implements Serializable { @Override public View getView(String viewName) { return view; - }; + } @Override public String getViewName(String navigationState) { diff --git a/server/src/com/vaadin/ui/ConnectorTracker.java b/server/src/com/vaadin/ui/ConnectorTracker.java index 33d585adca..d985ffd124 100644 --- a/server/src/com/vaadin/ui/ConnectorTracker.java +++ b/server/src/com/vaadin/ui/ConnectorTracker.java @@ -635,7 +635,7 @@ public class ConnectorTracker implements Serializable { stringDiffStates.put(key, diffStates.get(key).toString()); } out.writeObject(stringDiffStates); - }; + } /* Special serialization to JSONObjects which are not serializable */ private void readObject(java.io.ObjectInputStream in) throws IOException, diff --git a/server/src/com/vaadin/ui/Upload.java b/server/src/com/vaadin/ui/Upload.java index c8d9f3ff09..5677b1a16e 100644 --- a/server/src/com/vaadin/ui/Upload.java +++ b/server/src/com/vaadin/ui/Upload.java @@ -1184,5 +1184,5 @@ public class Upload extends AbstractComponent implements Component.Focusable, } return super.getListeners(eventType); - }; + } } |