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 /shared | |
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 'shared')
4 files changed, 5 insertions, 5 deletions
diff --git a/shared/src/com/vaadin/shared/ui/datefield/Resolution.java b/shared/src/com/vaadin/shared/ui/datefield/Resolution.java index 16ae303f02..44ab39ba12 100644 --- a/shared/src/com/vaadin/shared/ui/datefield/Resolution.java +++ b/shared/src/com/vaadin/shared/ui/datefield/Resolution.java @@ -81,4 +81,4 @@ public enum Resolution { } return resolutions; } -}; +} diff --git a/shared/src/com/vaadin/shared/ui/ui/NotificationConfigurationBean.java b/shared/src/com/vaadin/shared/ui/ui/NotificationConfigurationBean.java index 05a1706763..6c8c743d57 100644 --- a/shared/src/com/vaadin/shared/ui/ui/NotificationConfigurationBean.java +++ b/shared/src/com/vaadin/shared/ui/ui/NotificationConfigurationBean.java @@ -32,7 +32,7 @@ public class NotificationConfigurationBean implements Serializable { */ public enum Role { ALERT, STATUS - }; + } private String prefix; private String postfix; diff --git a/shared/src/com/vaadin/shared/ui/ui/UIState.java b/shared/src/com/vaadin/shared/ui/ui/UIState.java index 4cde452a2b..339d671531 100644 --- a/shared/src/com/vaadin/shared/ui/ui/UIState.java +++ b/shared/src/com/vaadin/shared/ui/ui/UIState.java @@ -63,7 +63,7 @@ public class UIState extends TabIndexState { null, Role.STATUS)); setup.put("assistive", new NotificationConfigurationBean("Note: ", null, Role.STATUS)); - }; + } } public static class PushConfigurationState implements Serializable { diff --git a/shared/src/com/vaadin/shared/ui/window/WindowState.java b/shared/src/com/vaadin/shared/ui/window/WindowState.java index 3cb6bbe61e..e27bf87e88 100644 --- a/shared/src/com/vaadin/shared/ui/window/WindowState.java +++ b/shared/src/com/vaadin/shared/ui/window/WindowState.java @@ -28,13 +28,13 @@ public class WindowState extends PanelState { */ public enum WindowRole { ALERTDIALOG, DIALOG - }; + } public boolean modal = false; public boolean resizable = true; public boolean resizeLazy = false; public boolean draggable = true; - public boolean centered = false;; + public boolean centered = false; public int positionX = -1; public int positionY = -1; public WindowMode windowMode = WindowMode.NORMAL; |