Index: trunk/src/org/openstreetmap/josm/gui/dialogs/properties/RecentTagCollection.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/dialogs/properties/RecentTagCollection.java	(revision 16081)
+++ trunk/src/org/openstreetmap/josm/gui/dialogs/properties/RecentTagCollection.java	(revision 16082)
@@ -24,5 +24,5 @@
 
     RecentTagCollection(final int capacity) {
-        recentTags = new LruCache(capacity);
+        recentTags = new LruCache<>(capacity);
         tagsToIgnore = SearchCompiler.Never.INSTANCE;
     }
Index: trunk/src/org/openstreetmap/josm/gui/util/LruCache.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/util/LruCache.java	(revision 16081)
+++ trunk/src/org/openstreetmap/josm/gui/util/LruCache.java	(revision 16082)
@@ -7,5 +7,6 @@
 /**
  * LRU cache
- * @apiNote http://java-planet.blogspot.com/2005/08/how-to-set-up-simple-lru-cache-using.html
+ * @see <a href="http://java-planet.blogspot.com/2005/08/how-to-set-up-simple-lru-cache-using.html">
+ *     Java Planet: How to set up a simple LRU cache using LinkedHashMap</a>
  */
 public final class LruCache<K, V> extends LinkedHashMap<K, V> {
