Cleanup QueuedNotificationManager
[yangtools.git] / common / util / src / main / java / org / opendaylight / yangtools / util / concurrent / NotificationManager.java
index a184ec679024b95a49a08c088013d5b53f927892..531adfcb812fb373d35876a0502750c18453e545 100644 (file)
@@ -29,7 +29,7 @@ public interface NotificationManager<L, N> {
      * @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<L, N> {
      * @param notifications the notifications to dispatch
      * @throws RejectedExecutionException if a notification can't be queued for dispatching
      */
-    void submitNotifications( final L listener, Iterable<N> notifications);
+    void submitNotifications(L listener, Iterable<N> notifications);
 
 }