Checkstyle clean up about 200 trivial violation
[yangtools.git] / common / util / src / main / java / org / opendaylight / yangtools / util / ReadWriteTrieMap.java
index 99cb628f89d86e78c9aba68e5139b3b36d8af719..6250dd3640d2f49e9e847f881903c1f95d56c4ae 100644 (file)
@@ -21,7 +21,7 @@ import org.slf4j.LoggerFactory;
  * their size, and determining the size of a TrieMap is expensive, we make sure
  * to update it as we go.
  *
- * FIXME: this map does not support modification view the keySet()/values()/entrySet()
+ * <p>FIXME: this map does not support modification view the keySet()/values()/entrySet()
  *        methods.
  *
  * @param <K> Key type
@@ -33,7 +33,7 @@ final class ReadWriteTrieMap<K, V> implements Map<K, V> {
     private int size;
 
     ReadWriteTrieMap() {
-        this.delegate = new TrieMap<K, V>();
+        this.delegate = new TrieMap<>();
         this.size = 0;
     }