Fix checkstyle violations in messagebus
[controller.git] / opendaylight / md-sal / messagebus-spi / src / main / java / org / opendaylight / controller / messagebus / spi / EventSourceRegistration.java
index 06af7c12c815f09bfc0ca6185e2601df375a531a..dd6cc1a166d6ee514816176e609ebcbb022e274b 100644 (file)
@@ -14,9 +14,8 @@ import org.opendaylight.yangtools.concepts.ObjectRegistration;
  * and it is used to unregister EventSource.
  *
  */
-public interface EventSourceRegistration <T extends EventSource> extends ObjectRegistration<T>{
+public interface EventSourceRegistration<T extends EventSource> extends ObjectRegistration<T> {
 
     @Override
-    public void close();
-
+    void close();
 }