You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by sc...@apache.org on 2002/10/13 15:55:36 UTC

cvs commit: jakarta-commons/collections/src/test/org/apache/commons/collections TestMap.java TestList.java TestObject.java

scolebourne    2002/10/13 06:55:36

  Modified:    collections/src/test/org/apache/commons/collections
                        TestMap.java TestList.java TestObject.java
  Log:
  Fix to avoid javadoc generation warnings
  
  Revision  Changes    Path
  1.20      +5 -5      jakarta-commons/collections/src/test/org/apache/commons/collections/TestMap.java
  
  Index: TestMap.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/collections/src/test/org/apache/commons/collections/TestMap.java,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- TestMap.java	12 Oct 2002 22:36:22 -0000	1.19
  +++ TestMap.java	13 Oct 2002 13:55:35 -0000	1.20
  @@ -335,7 +335,7 @@
   
       /**
        *  Return a new, populated map.  The mappings in the map should match the
  -     *  keys and values returned from {@linke #getSampleKeys()} and {@link
  +     *  keys and values returned from {@link #getSampleKeys()} and {@link
        *  #getSampleValues()}.  The default implementation uses makeEmptyMap()
        *  and calls {@link #addSampleMappings()} to add all the mappings to the
        *  map.
  
  
  
  1.13      +8 -8      jakarta-commons/collections/src/test/org/apache/commons/collections/TestList.java
  
  Index: TestList.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/collections/src/test/org/apache/commons/collections/TestList.java,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- TestList.java	12 Oct 2002 22:36:22 -0000	1.12
  +++ TestList.java	13 Oct 2002 13:55:35 -0000	1.13
  @@ -1051,7 +1051,7 @@
   
   
      /**
  -    *  Tests that a sublist raises a {@link ConcurrentModificationException}
  +    *  Tests that a sublist raises a {@link java.util.ConcurrentModificationException ConcurrentModificationException}
       *  if elements are added to the original list.
       */
      public void testListSubListFailFastOnAdd() {
  @@ -1082,7 +1082,7 @@
   
   
      /**
  -    *  Tests that a sublist raises a {@link ConcurrentModificationException}
  +    *  Tests that a sublist raises a {@link java.util.ConcurrentModificationException ConcurrentModificationException}
       *  if elements are removed from the original list.
       */
      public void testListSubListFailFastOnRemove() {
  @@ -1118,7 +1118,7 @@
   
      /**
       *  Invokes all the methods on the given sublist to make sure they raise
  -    *  a {@link ConcurrentModificationException}.
  +    *  a {@link java.util.ConcurrentModificationException ConcurrentModificationException}.
       */
      protected void failFastAll(List list) {
          Method[] methods = List.class.getMethods();
  @@ -1130,7 +1130,7 @@
   
      /**
       *  Invokes the given method on the given sublist to make sure it raises
  -    *  a {@link ConcurrentModificationException}.
  +    *  a {@link java.util.ConcurrentModificationException ConcurrentModificationException}.
       *
       *  Unless the method happens to be the equals() method, in which case
       *  the test is skipped.  There seems to be a bug in
  
  
  
  1.13      +5 -5      jakarta-commons/collections/src/test/org/apache/commons/collections/TestObject.java
  
  Index: TestObject.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/collections/src/test/org/apache/commons/collections/TestObject.java,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- TestObject.java	12 Oct 2002 22:36:22 -0000	1.12
  +++ TestObject.java	13 Oct 2002 13:55:35 -0000	1.13
  @@ -74,7 +74,7 @@
   import java.io.Serializable;
   
   /**
  - * Tests base {@link java.util.Object} methods and contracts.
  + * Tests base {@link java.lang.Object} methods and contracts.
    * <p>
    * To use, simply extend this class, and implement
    * the {@link #makeObject()} method.
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>