Skip to content

Commit 39be12c

Browse files
committed
FQCN is not needed
1 parent ad6e9df commit 39be12c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

commons-jcs3-core/src/main/java/org/apache/commons/jcs3/utils/struct/AbstractLRUMap.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public AbstractLRUMap()
9292
/**
9393
* This removes all the items. It clears the map and the double linked list.
9494
* <p>
95-
* @see java.util.Map#clear()
95+
* @see Map#clear()
9696
*/
9797
@Override
9898
public void clear()
@@ -112,7 +112,7 @@ public void clear()
112112
/**
113113
* Returns true if the map contains an element for the supplied key.
114114
* <p>
115-
* @see java.util.Map#containsKey(Object)
115+
* @see Map#containsKey(Object)
116116
*/
117117
@Override
118118
public boolean containsKey( final Object key )
@@ -123,7 +123,7 @@ public boolean containsKey( final Object key )
123123
/**
124124
* This is an expensive operation that determines if the object supplied is mapped to any key.
125125
* <p>
126-
* @see java.util.Map#containsValue(Object)
126+
* @see Map#containsValue(Object)
127127
*/
128128
@Override
129129
public boolean containsValue( final Object value )
@@ -167,7 +167,7 @@ public void dumpMap()
167167
* TODO we should return out own set wrapper, so we can avoid the extra object creation if it
168168
* isn't necessary.
169169
* <p>
170-
* @see java.util.Map#entrySet()
170+
* @see Map#entrySet()
171171
*/
172172
@Override
173173
public Set<Map.Entry<K, V>> entrySet()
@@ -278,7 +278,7 @@ public IStats getStatistics()
278278
/**
279279
* Returns true if the map is empty.
280280
* <p>
281-
* @see java.util.Map#isEmpty()
281+
* @see Map#isEmpty()
282282
*/
283283
@Override
284284
public boolean isEmpty()
@@ -435,7 +435,7 @@ public V remove( final Object key )
435435
/**
436436
* This simply returns the number of elements in the map.
437437
* <p>
438-
* @see java.util.Map#size()
438+
* @see Map#size()
439439
*/
440440
@Override
441441
public int size()

0 commit comments

Comments
 (0)