Committed by
Gerrit Code Review
Remove unnecessary semicolons
Change-Id: I02e0b1484b4e441cf84b416e5c2407dbd820b3f8
Showing
2 changed files
with
2 additions
and
2 deletions
... | @@ -20,7 +20,7 @@ package org.onosproject.event; | ... | @@ -20,7 +20,7 @@ package org.onosproject.event; |
20 | */ | 20 | */ |
21 | public class TestEvent extends AbstractEvent<TestEvent.Type, String> { | 21 | public class TestEvent extends AbstractEvent<TestEvent.Type, String> { |
22 | 22 | ||
23 | - public enum Type { FOO, BAR }; | 23 | + public enum Type { FOO, BAR } |
24 | 24 | ||
25 | public TestEvent(Type type, String subject) { | 25 | public TestEvent(Type type, String subject) { |
26 | super(type, subject); | 26 | super(type, subject); | ... | ... |
... | @@ -84,7 +84,7 @@ public class CoreEventDispatcherTest { | ... | @@ -84,7 +84,7 @@ public class CoreEventDispatcherTest { |
84 | } | 84 | } |
85 | } | 85 | } |
86 | 86 | ||
87 | - private enum Type { FOO }; | 87 | + private enum Type { FOO } |
88 | 88 | ||
89 | private static class Thing extends AbstractEvent<Type, String> { | 89 | private static class Thing extends AbstractEvent<Type, String> { |
90 | protected Thing(String subject) { | 90 | protected Thing(String subject) { | ... | ... |
-
Please register or login to post a comment