Fixup Typos in Comments
[controller.git] / opendaylight / md-sal / cds-access-client / src / main / java / org / opendaylight / controller / cluster / access / client / EmptyQueue.java
index 40a296bd42366e65ca7c342b8784a2c91622d421..125f0251cd947198edbc17072d66c7fc607c7d61 100644 (file)
@@ -17,7 +17,6 @@ import org.opendaylight.yangtools.concepts.Immutable;
 /**
  * A specialized always-empty implementation of {@link java.util.Queue}. This implementation will always refuse new
  * elements in its {@link #offer(Object)} method.
-
  * @author Robert Varga
  *
  * @param <E> the type of elements held in this collection
@@ -60,4 +59,4 @@ public final class EmptyQueue<E> extends AbstractQueue<E> implements Immutable {
     public int size() {
         return 0;
     }
-}
\ No newline at end of file
+}