Checkstyle clean up about 200 trivial violation
[yangtools.git] / common / util / src / main / java / org / opendaylight / yangtools / util / concurrent / NotificationManager.java
index aee3c9967639bfff299acea8074a2d75c30a9fc6..a184ec679024b95a49a08c088013d5b53f927892 100644 (file)
@@ -22,8 +22,8 @@ public interface NotificationManager<L, N> {
 
     /**
      * Submits a notification to be queued and dispatched to the given listener.
-     * <p>
-     * <b>Note:</b> This method may block if the listener queue is currently full.
+     *
+     * <p><b>Note:</b> This method may block if the listener queue is currently full.
      *
      * @param listener the listener to notify
      * @param notification the notification to dispatch
@@ -33,8 +33,8 @@ public interface NotificationManager<L, N> {
 
     /**
      * Submits notifications to be queued and dispatched to the given listener.
-     * <p>
-     * <b>Note:</b> This method may block if the listener queue is currently full.
+     *
+     * <p><b>Note:</b> This method may block if the listener queue is currently full.
      *
      * @param listener the listener to notify
      * @param notifications the notifications to dispatch
@@ -42,4 +42,4 @@ public interface NotificationManager<L, N> {
      */
     void submitNotifications( final L listener, Iterable<N> notifications);
 
-}
\ No newline at end of file
+}