Simplify DOMNotificationService contract
[mdsal.git] / dom / mdsal-dom-broker / src / main / java / org / opendaylight / mdsal / dom / broker / OSGiDOMNotificationRouter.java
index 87ebcdb9a601eb53d0e7c40eed85f1267bcf7ad7..4adc9e01631c6ae14d3352119aec7d4e808bb024 100644 (file)
@@ -90,10 +90,4 @@ public final class OSGiDOMNotificationRouter implements DOMNotificationService,
             final Collection<SchemaPath> types) {
         return router.registerNotificationListener(listener, types);
     }
-
-    @Override
-    public <T extends DOMNotificationListener> ListenerRegistration<T> registerNotificationListener(final T listener,
-            final SchemaPath... types) {
-        return router.registerNotificationListener(listener, types);
-    }
 }