X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=common%2Futil%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fyangtools%2Futil%2Fconcurrent%2FNotificationManager.java;h=531adfcb812fb373d35876a0502750c18453e545;hb=a0d690e3b716c7574c8fa39b3291220a42a7bdd0;hp=a184ec679024b95a49a08c088013d5b53f927892;hpb=021aa79704d3e4d0b4e27f39e2a5523e061571ab;p=yangtools.git diff --git a/common/util/src/main/java/org/opendaylight/yangtools/util/concurrent/NotificationManager.java b/common/util/src/main/java/org/opendaylight/yangtools/util/concurrent/NotificationManager.java index a184ec6790..531adfcb81 100644 --- a/common/util/src/main/java/org/opendaylight/yangtools/util/concurrent/NotificationManager.java +++ b/common/util/src/main/java/org/opendaylight/yangtools/util/concurrent/NotificationManager.java @@ -29,7 +29,7 @@ public interface NotificationManager { * @param notification the notification to dispatch * @throws RejectedExecutionException if the notification can't be queued for dispatching */ - void submitNotification( L listener, N notification ); + void submitNotification(L listener, N notification); /** * Submits notifications to be queued and dispatched to the given listener. @@ -40,6 +40,6 @@ public interface NotificationManager { * @param notifications the notifications to dispatch * @throws RejectedExecutionException if a notification can't be queued for dispatching */ - void submitNotifications( final L listener, Iterable notifications); + void submitNotifications(L listener, Iterable notifications); }