X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-dom-spi%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fmd%2Fsal%2Fdom%2Fspi%2FForwardingDOMNotificationPublishService.java;h=c9e6bccbd34c5dec5ab3e906a1b7c60d97dede1e;hp=6bc11079e23f714aaa16eb77e484ae28f98fb2ec;hb=8aa59fb1d2d9591ecd8af541e7f5d89167bae7af;hpb=2be5bc49c7fba3755792bb34de8173907fd9b176 diff --git a/opendaylight/md-sal/sal-dom-spi/src/main/java/org/opendaylight/controller/md/sal/dom/spi/ForwardingDOMNotificationPublishService.java b/opendaylight/md-sal/sal-dom-spi/src/main/java/org/opendaylight/controller/md/sal/dom/spi/ForwardingDOMNotificationPublishService.java index 6bc11079e2..c9e6bccbd3 100644 --- a/opendaylight/md-sal/sal-dom-spi/src/main/java/org/opendaylight/controller/md/sal/dom/spi/ForwardingDOMNotificationPublishService.java +++ b/opendaylight/md-sal/sal-dom-spi/src/main/java/org/opendaylight/controller/md/sal/dom/spi/ForwardingDOMNotificationPublishService.java @@ -22,17 +22,17 @@ public abstract class ForwardingDOMNotificationPublishService extends Forwarding protected abstract DOMNotificationPublishService delegate(); @Override - public ListenableFuture putNotification(final DOMNotification notification) throws InterruptedException { + public ListenableFuture putNotification(final DOMNotification notification) throws InterruptedException { return delegate().putNotification(notification); } @Override - public ListenableFuture offerNotification(final DOMNotification notification) { + public ListenableFuture offerNotification(final DOMNotification notification) { return delegate().offerNotification(notification); } @Override - public ListenableFuture offerNotification(final DOMNotification notification, final long timeout, + public ListenableFuture offerNotification(final DOMNotification notification, final long timeout, final TimeUnit unit) throws InterruptedException { return delegate().offerNotification(notification, timeout, unit); }