BUG-7464: fix checkstyle warnings
[yangtools.git] / third-party / triemap / src / main / java / org / opendaylight / yangtools / triemap / MutableIterator.java
index fdd03bca5e2213bf91f067dd3e4340e5ccf16b24..988be4099a6529e4741d204c46ae9310fec07b7f 100644 (file)
@@ -56,6 +56,7 @@ final class MutableIterator<K, V> extends AbstractIterator<K, V> {
      * {@link #setValue(Object)} methods cannot guarantee consistency with the base map and may produce surprising
      * results when the map is concurrently modified, either directly or via another entry/iterator.
      *
+     * <p>
      * The behavior is similar to what Java 8's ConcurrentHashMap does, which is probably the most consistent handling
      * of this case without requiring expensive and revalidation.
      */
@@ -81,7 +82,7 @@ final class MutableIterator<K, V> extends AbstractIterator<K, V> {
          *
          * @implSpec
          * This implementation returns the most uptodate value we have observed via this entry. It does not reflect
-         * concurrent modifications, nor does it throw {@link IllegalStateException} if the entry is removed.
+         *     concurrent modifications, nor does it throw {@link IllegalStateException} if the entry is removed.
          */
         @Override
         public V getValue() {
@@ -93,7 +94,7 @@ final class MutableIterator<K, V> extends AbstractIterator<K, V> {
          *
          * @implSpec
          * This implementation returns the most uptodate value we have observed via this entry. It does not reflect
-         * concurrent modifications, nor does it throw {@link IllegalStateException} if the entry is removed.
+         *     concurrent modifications, nor does it throw {@link IllegalStateException} if the entry is removed.
          */
         @Override
         public V setValue(final V value) {