You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tn...@apache.org on 2012/08/11 15:05:25 UTC

svn commit: r1371941 - in /commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection: AbstractCollectionDecorator.java AbstractUntypedCollectionDecorator.java SynchronizedCollection.java UnmodifiableBoundedCollection.java

Author: tn
Date: Sat Aug 11 13:05:24 2012
New Revision: 1371941

URL: http://svn.apache.org/viewvc?rev=1371941&view=rev
Log:
Remove added inheritDoc tags again.

Modified:
    commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/AbstractCollectionDecorator.java
    commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/AbstractUntypedCollectionDecorator.java
    commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/SynchronizedCollection.java
    commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/UnmodifiableBoundedCollection.java

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/AbstractCollectionDecorator.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/AbstractCollectionDecorator.java?rev=1371941&r1=1371940&r2=1371941&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/AbstractCollectionDecorator.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/AbstractCollectionDecorator.java Sat Aug 11 13:05:24 2012
@@ -81,67 +81,54 @@ public abstract class AbstractCollection
 
     //-----------------------------------------------------------------------
     
-    /** {@inheritDoc} */
     public boolean add(E object) {
         return decorated().add(object);
     }
 
-    /** {@inheritDoc} */
     public boolean addAll(Collection<? extends E> coll) {
         return decorated().addAll(coll);
     }
 
-    /** {@inheritDoc} */
     public void clear() {
         decorated().clear();
     }
 
-    /** {@inheritDoc} */
     public boolean contains(Object object) {
         return decorated().contains(object);
     }
 
-    /** {@inheritDoc} */
     public boolean isEmpty() {
         return decorated().isEmpty();
     }
 
-    /** {@inheritDoc} */
     public Iterator<E> iterator() {
         return decorated().iterator();
     }
 
-    /** {@inheritDoc} */
     public boolean remove(Object object) {
         return decorated().remove(object);
     }
 
-    /** {@inheritDoc} */
     public int size() {
         return decorated().size();
     }
 
-    /** {@inheritDoc} */
     public Object[] toArray() {
         return decorated().toArray();
     }
 
-    /** {@inheritDoc} */
     public <T> T[] toArray(T[] object) {
         return decorated().toArray(object);
     }
 
-    /** {@inheritDoc} */
     public boolean containsAll(Collection<?> coll) {
         return decorated().containsAll(coll);
     }
 
-    /** {@inheritDoc} */
     public boolean removeAll(Collection<?> coll) {
         return decorated().removeAll(coll);
     }
 
-    /** {@inheritDoc} */
     public boolean retainAll(Collection<?> coll) {
         return decorated().retainAll(coll);
     }

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/AbstractUntypedCollectionDecorator.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/AbstractUntypedCollectionDecorator.java?rev=1371941&r1=1371940&r2=1371941&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/AbstractUntypedCollectionDecorator.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/AbstractUntypedCollectionDecorator.java Sat Aug 11 13:05:24 2012
@@ -66,52 +66,42 @@ public abstract class AbstractUntypedCol
         return collection;
     }
 
-    /** {@inheritDoc} */
     public void clear() {
         decorated().clear();
     }
 
-    /** {@inheritDoc} */
     public boolean contains(Object object) {
         return decorated().contains(object);
     }
 
-    /** {@inheritDoc} */
     public boolean isEmpty() {
         return decorated().isEmpty();
     }
 
-    /** {@inheritDoc} */
     public boolean remove(Object object) {
         return decorated().remove(object);
     }
 
-    /** {@inheritDoc} */
     public int size() {
         return decorated().size();
     }
 
-    /** {@inheritDoc} */
     public Object[] toArray() {
         return decorated().toArray();
     }
 
-    /** {@inheritDoc} */
     public <T> T[] toArray(T[] object) {
         return decorated().toArray(object);
     }
 
-    /** {@inheritDoc} */
     public boolean containsAll(Collection<?> coll) {
         return decorated().containsAll(coll);
     }
 
-    /** {@inheritDoc} */
     public boolean removeAll(Collection<?> coll) {
         return decorated().removeAll(coll);
     }
 
-    /** {@inheritDoc} */
     public boolean retainAll(Collection<?> coll) {
         return decorated().retainAll(coll);
     }

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/SynchronizedCollection.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/SynchronizedCollection.java?rev=1371941&r1=1371940&r2=1371941&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/SynchronizedCollection.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/SynchronizedCollection.java Sat Aug 11 13:05:24 2012
@@ -101,42 +101,36 @@ public class SynchronizedCollection<E> i
 
     //-----------------------------------------------------------------------
     
-    /** {@inheritDoc} */
     public boolean add(E object) {
         synchronized (lock) {
             return decorated().add(object);
         }
     }
 
-    /** {@inheritDoc} */
     public boolean addAll(Collection<? extends E> coll) {
         synchronized (lock) {
             return decorated().addAll(coll);
         }
     }
 
-    /** {@inheritDoc} */
     public void clear() {
         synchronized (lock) {
             decorated().clear();
         }
     }
 
-    /** {@inheritDoc} */
     public boolean contains(Object object) {
         synchronized (lock) {
             return decorated().contains(object);
         }
     }
 
-    /** {@inheritDoc} */
     public boolean containsAll(Collection<?> coll) {
         synchronized (lock) {
             return decorated().containsAll(coll);
         }
     }
 
-    /** {@inheritDoc} */
     public boolean isEmpty() {
         synchronized (lock) {
             return decorated().isEmpty();
@@ -157,42 +151,36 @@ public class SynchronizedCollection<E> i
         return decorated().iterator();
     }
 
-    /** {@inheritDoc} */
     public Object[] toArray() {
         synchronized (lock) {
             return decorated().toArray();
         }
     }
 
-    /** {@inheritDoc} */
     public <T> T[] toArray(T[] object) {
         synchronized (lock) {
             return decorated().toArray(object);
         }
     }
 
-    /** {@inheritDoc} */
     public boolean remove(Object object) {
         synchronized (lock) {
             return decorated().remove(object);
         }
     }
 
-    /** {@inheritDoc} */
     public boolean removeAll(Collection<?> coll) {
         synchronized (lock) {
             return decorated().removeAll(coll);
         }
     }
 
-    /** {@inheritDoc} */
     public boolean retainAll(Collection<?> coll) {
         synchronized (lock) {
             return decorated().retainAll(coll);
         }
     }
 
-    /** {@inheritDoc} */
     public int size() {
         synchronized (lock) {
             return decorated().size();

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/UnmodifiableBoundedCollection.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/UnmodifiableBoundedCollection.java?rev=1371941&r1=1371940&r2=1371941&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/UnmodifiableBoundedCollection.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/UnmodifiableBoundedCollection.java Sat Aug 11 13:05:24 2012
@@ -139,23 +139,14 @@ public final class UnmodifiableBoundedCo
     }
 
     //-----------------------------------------------------------------------
-    /**
-     * {@inheritDoc}
-     */
     public boolean isFull() {
         return decorated().isFull();
     }
 
-    /**
-     * {@inheritDoc}
-     */
     public int maxSize() {
         return decorated().maxSize();
     }
 
-    /**
-     * {@inheritDoc}
-     */
     @Override
     protected BoundedCollection<E> decorated() {
         return (BoundedCollection<E>) super.decorated();