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/tests/src/com/vaadin/util | |
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/tests/src/com/vaadin/util')
-rw-r--r-- | server/tests/src/com/vaadin/util/TestCurrentInstance.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/tests/src/com/vaadin/util/TestCurrentInstance.java b/server/tests/src/com/vaadin/util/TestCurrentInstance.java index 1910172aa8..09ef9514e5 100644 --- a/server/tests/src/com/vaadin/util/TestCurrentInstance.java +++ b/server/tests/src/com/vaadin/util/TestCurrentInstance.java @@ -70,7 +70,7 @@ public class TestCurrentInstance { Assert.assertEquals(TestCurrentInstance.this, CurrentInstance.get(TestCurrentInstance.class)); threadFailed.set(false); - }; + } }; t.start(); CurrentInstance.set(TestCurrentInstance.class, null); @@ -103,7 +103,7 @@ public class TestCurrentInstance { } catch (Exception e) { e.printStackTrace(); } - }; + } }; t.start(); |