You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2012/06/24 03:22:52 UTC

svn commit: r1353218 - in /commons/proper/collections/trunk/src/main/java/org/apache/commons/collections: BufferUtils.java map/LRUMap.java set/ListOrderedSet.java

Author: sebb
Date: Sun Jun 24 01:22:51 2012
New Revision: 1353218

URL: http://svn.apache.org/viewvc?rev=1353218&view=rev
Log:
Javadoc fixes

Modified:
    commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/BufferUtils.java
    commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/map/LRUMap.java
    commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/set/ListOrderedSet.java

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/BufferUtils.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/BufferUtils.java?rev=1353218&r1=1353217&r2=1353218&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/BufferUtils.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/BufferUtils.java Sun Jun 24 01:22:51 2012
@@ -198,7 +198,7 @@ public class BufferUtils {
      * Get an empty <code>Buffer</code>.
      *
      * @param <E> the type of the elements in the buffer
-     * @return an empty {@link Buffer<E>}
+     * @return an empty {@link Buffer}
      */
     @SuppressWarnings("unchecked")
     public static <E> Buffer<E> emptyBuffer() {

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/map/LRUMap.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/map/LRUMap.java?rev=1353218&r1=1353217&r2=1353218&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/map/LRUMap.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/map/LRUMap.java Sun Jun 24 01:22:51 2012
@@ -38,7 +38,7 @@ import org.apache.commons.collections.Bo
  * of modifying the map's iteration order and thus invalidating any
  * iterators currently in use.  It is therefore suggested that iterations
  * over an {@link LRUMap} instance access entry values only through a
- * {@link MapIterator} or {@link #entrySet()} iterator.
+ * {@link org.apache.commons.collections.MapIterator MapIterator} or {@link #entrySet()} iterator.
  * <p>
  * The map implements <code>OrderedMap</code> and entries may be queried using
  * the bidirectional <code>OrderedMapIterator</code>. The order returned is

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/set/ListOrderedSet.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/set/ListOrderedSet.java?rev=1353218&r1=1353217&r2=1353218&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/set/ListOrderedSet.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/set/ListOrderedSet.java Sun Jun 24 01:22:51 2012
@@ -258,7 +258,7 @@ public class ListOrderedSet<E> extends A
      *
      * @param index the position of the element in the ordered {@link Set}.
      * @return the element at position {@code index}
-     * @see {@link List#get(int)}
+     * @see List#get(int)
      */
     public E get(int index) {
         return setOrder.get(index);
@@ -270,7 +270,7 @@ public class ListOrderedSet<E> extends A
      * @param object the element to search for
      * @return the index of the first occurrence of the object, or {@code -1} if this
      * ordered set does not contain this object
-     * @see {@link List#indexOf(Object)}
+     * @see List#indexOf(Object)
      */
     public int indexOf(Object object) {
         return setOrder.indexOf(object);
@@ -283,7 +283,7 @@ public class ListOrderedSet<E> extends A
      *
      * @param index the index at which the element is to be inserted
      * @param object the element to be inserted
-     * @see {@link List#add(int, Object)}
+     * @see List#add(int, Object)
      */
     public void add(int index, E object) {
         if (!contains(object)) {
@@ -300,7 +300,7 @@ public class ListOrderedSet<E> extends A
      * @param index the position to insert the elements
      * @param coll the collection containing the elements to be inserted
      * @return {@code true} if this ordered set changed as a result of the call
-     * @see {@link List#addAll(int, Collection)}
+     * @see List#addAll(int, Collection)
      */
     public boolean addAll(int index, Collection<? extends E> coll) {
         boolean changed = false;
@@ -328,7 +328,7 @@ public class ListOrderedSet<E> extends A
      * 
      * @param index the index of the element to be removed
      * @return the element that has been remove from the ordered set
-     * @see {@link List#remove(int)}
+     * @see List#remove(int)
      */
     public Object remove(int index) {
         Object obj = setOrder.remove(index);