From 86df16092ee8c24cb65af518b509aee5492d37cc Mon Sep 17 00:00:00 2001 From: Stephen Colebourne Date: Sun, 13 Oct 2002 13:55:35 +0000 Subject: [PATCH] Fix to avoid javadoc generation warnings git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@130832 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/commons/collections/TestList.java | 16 ++++++++-------- .../org/apache/commons/collections/TestMap.java | 10 +++++----- .../apache/commons/collections/TestObject.java | 10 +++++----- 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/src/test/org/apache/commons/collections/TestList.java b/src/test/org/apache/commons/collections/TestList.java index 9dca3cfb8..6b29a9ff9 100644 --- a/src/test/org/apache/commons/collections/TestList.java +++ b/src/test/org/apache/commons/collections/TestList.java @@ -1,7 +1,7 @@ /* - * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/Attic/TestList.java,v 1.12 2002/10/12 22:36:22 scolebourne Exp $ - * $Revision: 1.12 $ - * $Date: 2002/10/12 22:36:22 $ + * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/Attic/TestList.java,v 1.13 2002/10/13 13:55:35 scolebourne Exp $ + * $Revision: 1.13 $ + * $Date: 2002/10/13 13:55:35 $ * * ==================================================================== * @@ -89,7 +89,7 @@ import java.util.NoSuchElementException; * * @author Rodney Waldhoff * @author Paul Jack - * @version $Id: TestList.java,v 1.12 2002/10/12 22:36:22 scolebourne Exp $ + * @version $Id: TestList.java,v 1.13 2002/10/13 13:55:35 scolebourne Exp $ */ public abstract class TestList extends TestCollection { @@ -1051,7 +1051,7 @@ public abstract class TestList extends TestCollection { /** - * 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 @@ public abstract class TestList extends TestCollection { /** - * 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 @@ public abstract class TestList extends TestCollection { /** * 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 @@ public abstract class TestList extends TestCollection { /** * 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 diff --git a/src/test/org/apache/commons/collections/TestMap.java b/src/test/org/apache/commons/collections/TestMap.java index b3f14440b..34dbdb615 100644 --- a/src/test/org/apache/commons/collections/TestMap.java +++ b/src/test/org/apache/commons/collections/TestMap.java @@ -1,7 +1,7 @@ /* - * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/Attic/TestMap.java,v 1.19 2002/10/12 22:36:22 scolebourne Exp $ - * $Revision: 1.19 $ - * $Date: 2002/10/12 22:36:22 $ + * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/Attic/TestMap.java,v 1.20 2002/10/13 13:55:35 scolebourne Exp $ + * $Revision: 1.20 $ + * $Date: 2002/10/13 13:55:35 $ * * ==================================================================== * @@ -152,7 +152,7 @@ import java.util.Set; * @author Michael Smith * @author Rodney Waldhoff * @author Paul Jack - * @version $Id: TestMap.java,v 1.19 2002/10/12 22:36:22 scolebourne Exp $ + * @version $Id: TestMap.java,v 1.20 2002/10/13 13:55:35 scolebourne Exp $ */ public abstract class TestMap extends TestObject { @@ -335,7 +335,7 @@ public abstract class TestMap extends TestObject { /** * 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. diff --git a/src/test/org/apache/commons/collections/TestObject.java b/src/test/org/apache/commons/collections/TestObject.java index 9ffe40920..31dfb10e3 100644 --- a/src/test/org/apache/commons/collections/TestObject.java +++ b/src/test/org/apache/commons/collections/TestObject.java @@ -1,7 +1,7 @@ /* - * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/Attic/TestObject.java,v 1.12 2002/10/12 22:36:22 scolebourne Exp $ - * $Revision: 1.12 $ - * $Date: 2002/10/12 22:36:22 $ + * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/Attic/TestObject.java,v 1.13 2002/10/13 13:55:35 scolebourne Exp $ + * $Revision: 1.13 $ + * $Date: 2002/10/13 13:55:35 $ * * ==================================================================== * @@ -74,7 +74,7 @@ import java.io.OutputStream; import java.io.Serializable; /** - * Tests base {@link java.util.Object} methods and contracts. + * Tests base {@link java.lang.Object} methods and contracts. *

* To use, simply extend this class, and implement * the {@link #makeObject()} method. @@ -84,7 +84,7 @@ import java.io.Serializable; * test case (method) your {@link Object} fails. * * @author Rodney Waldhoff - * @version $Id: TestObject.java,v 1.12 2002/10/12 22:36:22 scolebourne Exp $ + * @version $Id: TestObject.java,v 1.13 2002/10/13 13:55:35 scolebourne Exp $ */ public abstract class TestObject extends BulkTest { public TestObject(String testName) {