Bump yangtools to 3.0.0
[controller.git] / opendaylight / md-sal / sal-binding-broker / src / main / java / org / opendaylight / controller / md / sal / binding / compat / HeliumNotificationServiceAdapter.java
index 68daa45c45c88c8b9d410c37f5512d7439c9e0c3..f4c1020677f87a2e1c54853046d49a3066a1c286 100644 (file)
@@ -12,7 +12,8 @@ import org.opendaylight.yangtools.concepts.ListenerRegistration;
 import org.opendaylight.yangtools.yang.binding.Notification;
 import org.opendaylight.yangtools.yang.binding.NotificationListener;
 
-public class HeliumNotificationServiceAdapter implements org.opendaylight.controller.sal.binding.api.NotificationService, AutoCloseable {
+public class HeliumNotificationServiceAdapter
+        implements org.opendaylight.controller.sal.binding.api.NotificationService, AutoCloseable {
 
     private final NotificationService notificationService;
 
@@ -21,8 +22,10 @@ public class HeliumNotificationServiceAdapter implements org.opendaylight.contro
     }
 
     @Override
-    public <T extends Notification> ListenerRegistration<org.opendaylight.controller.sal.binding.api.NotificationListener<T>> registerNotificationListener(
-            final Class<T> notificationType, final org.opendaylight.controller.sal.binding.api.NotificationListener<T> listener) {
+    public <T extends Notification> ListenerRegistration<
+            org.opendaylight.controller.sal.binding.api.NotificationListener<T>> registerNotificationListener(
+            final Class<T> notificationType,
+            final org.opendaylight.controller.sal.binding.api.NotificationListener<T> listener) {
         throw new UnsupportedOperationException("Not supported type of listener.");
     }
 
@@ -34,6 +37,5 @@ public class HeliumNotificationServiceAdapter implements org.opendaylight.contro
 
     @Override
     public void close() throws Exception {
-
     }
 }