I just found out I have to send my attachments with a txt extension...
-----Original Message-----
From: Andrew Freeman [mailto:[EMAIL PROTECTED]]
Sent: Sunday, February 16, 2003 5:12 PM
To: Commons-Dev
Subject: [collections] import statement cleanup
If anyone is interested, I have used Eclipse to clean up the import
statements.
HTH,
Andy
Index: org/apache/commons/collections/BeanMap.java
===================================================================
RCS file:
/home/cvspublic/jakarta-commons/collections/src/java/org/apache/commons/collections/BeanMap.java,v
retrieving revision 1.15
diff -u -r1.15 BeanMap.java
--- org/apache/commons/collections/BeanMap.java 25 Jan 2003 12:06:55 -0000 1.15
+++ org/apache/commons/collections/BeanMap.java 16 Feb 2003 21:47:07 -0000
@@ -58,8 +58,8 @@
package org.apache.commons.collections;
import java.beans.BeanInfo;
-import java.beans.Introspector;
import java.beans.IntrospectionException;
+import java.beans.Introspector;
import java.beans.PropertyDescriptor;
import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;
Index: org/apache/commons/collections/BinaryHeap.java
===================================================================
RCS file:
/home/cvspublic/jakarta-commons/collections/src/java/org/apache/commons/collections/BinaryHeap.java,v
retrieving revision 1.11
diff -u -r1.11 BinaryHeap.java
--- org/apache/commons/collections/BinaryHeap.java 13 Oct 2002 12:59:04 -0000
1.11
+++ org/apache/commons/collections/BinaryHeap.java 16 Feb 2003 21:47:08 -0000
@@ -61,9 +61,9 @@
package org.apache.commons.collections;
import java.util.AbstractCollection;
+import java.util.Comparator;
import java.util.Iterator;
import java.util.NoSuchElementException;
-import java.util.Comparator;
/**
* Binary heap implementation of {@link PriorityQueue} and {@link Buffer}.
* <p>
Index: org/apache/commons/collections/CommonsLinkedList.java
===================================================================
RCS file:
/home/cvspublic/jakarta-commons/collections/src/java/org/apache/commons/collections/CommonsLinkedList.java,v
retrieving revision 1.3
diff -u -r1.3 CommonsLinkedList.java
--- org/apache/commons/collections/CommonsLinkedList.java 10 Jan 2003 20:21:22
-0000 1.3
+++ org/apache/commons/collections/CommonsLinkedList.java 16 Feb 2003 21:47:09
+-0000
@@ -62,7 +62,6 @@
import java.io.ObjectOutputStream;
import java.io.Serializable;
import java.lang.reflect.Array;
-import java.util.AbstractSequentialList;
import java.util.Collection;
import java.util.ConcurrentModificationException;
import java.util.Iterator;
Index: org/apache/commons/collections/CursorableLinkedList.java
===================================================================
RCS file:
/home/cvspublic/jakarta-commons/collections/src/java/org/apache/commons/collections/CursorableLinkedList.java,v
retrieving revision 1.10
diff -u -r1.10 CursorableLinkedList.java
--- org/apache/commons/collections/CursorableLinkedList.java 12 Oct 2002 22:15:19
-0000 1.10
+++ org/apache/commons/collections/CursorableLinkedList.java 16 Feb 2003 21:47:11
+-0000
@@ -63,18 +63,18 @@
package org.apache.commons.collections;
-import java.util.Collection;
-import java.util.List;
+import java.io.IOException;
+import java.io.ObjectInputStream;
+import java.io.ObjectOutputStream;
+import java.io.Serializable;
+import java.lang.reflect.Array;
import java.util.ArrayList;
+import java.util.Collection;
+import java.util.ConcurrentModificationException;
import java.util.Iterator;
+import java.util.List;
import java.util.ListIterator;
-import java.util.ConcurrentModificationException;
import java.util.NoSuchElementException;
-import java.io.Serializable;
-import java.io.ObjectInputStream;
-import java.io.ObjectOutputStream;
-import java.io.IOException;
-import java.lang.reflect.Array;
/**
* A doubly-linked list implementation of the {@link List} interface,
Index: org/apache/commons/collections/ExtendedProperties.java
===================================================================
RCS file:
/home/cvspublic/jakarta-commons/collections/src/java/org/apache/commons/collections/ExtendedProperties.java,v
retrieving revision 1.8
diff -u -r1.8 ExtendedProperties.java
--- org/apache/commons/collections/ExtendedProperties.java 25 Jan 2003 12:21:19
-0000 1.8
+++ org/apache/commons/collections/ExtendedProperties.java 16 Feb 2003 21:47:13
+-0000
@@ -57,9 +57,9 @@
*/
package org.apache.commons.collections;
-import java.io.IOException;
import java.io.File;
import java.io.FileInputStream;
+import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.LineNumberReader;
@@ -67,7 +67,6 @@
import java.io.PrintWriter;
import java.io.Reader;
import java.io.UnsupportedEncodingException;
-
import java.util.ArrayList;
import java.util.Enumeration;
import java.util.Hashtable;
@@ -426,7 +425,7 @@
*/
public String getInclude()
{
- return this.include;
+ return include;
}
/**
@@ -437,7 +436,7 @@
*/
public void setInclude(String inc)
{
- this.include = inc;
+ include = inc;
}
/**
Index: org/apache/commons/collections/MapUtils.java
===================================================================
RCS file:
/home/cvspublic/jakarta-commons/collections/src/java/org/apache/commons/collections/MapUtils.java,v
retrieving revision 1.15
diff -u -r1.15 MapUtils.java
--- org/apache/commons/collections/MapUtils.java 15 Dec 2002 13:05:03 -0000
1.15
+++ org/apache/commons/collections/MapUtils.java 16 Feb 2003 21:47:15 -0000
@@ -60,10 +60,18 @@
*/
package org.apache.commons.collections;
-import java.io.*;
-import java.text.*;
+import java.io.PrintStream;
import java.text.NumberFormat;
-import java.util.*;
+import java.text.ParseException;
+import java.util.Collections;
+import java.util.Comparator;
+import java.util.HashMap;
+import java.util.Iterator;
+import java.util.Map;
+import java.util.Properties;
+import java.util.Set;
+import java.util.SortedMap;
+import java.util.TreeMap;
/**
* A helper class for using {@link Map Map} instances.<P>
*
Index: org/apache/commons/collections/SequencedHashMap.java
===================================================================
RCS file:
/home/cvspublic/jakarta-commons/collections/src/java/org/apache/commons/collections/SequencedHashMap.java,v
retrieving revision 1.15
diff -u -r1.15 SequencedHashMap.java
--- org/apache/commons/collections/SequencedHashMap.java 24 Nov 2002 20:48:35
-0000 1.15
+++ org/apache/commons/collections/SequencedHashMap.java 16 Feb 2003 21:47:17
+-0000
@@ -61,22 +61,21 @@
package org.apache.commons.collections;
import java.io.Externalizable;
+import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;
-import java.io.IOException;
-
+import java.util.AbstractCollection;
+import java.util.AbstractSet;
+import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
+import java.util.ConcurrentModificationException;
import java.util.HashMap;
import java.util.Iterator;
-import java.util.AbstractCollection;
-import java.util.AbstractSet;
-import java.util.ArrayList;
import java.util.List;
import java.util.Map;
-import java.util.Set;
import java.util.NoSuchElementException;
-import java.util.ConcurrentModificationException;
+import java.util.Set;
/**
* A map of objects whose mapping entries are sequenced based on the order in
* which they were added. This data structure has fast <I>O(1)</I> search
Index: org/apache/commons/collections/StaticBucketMap.java
===================================================================
RCS file:
/home/cvspublic/jakarta-commons/collections/src/java/org/apache/commons/collections/StaticBucketMap.java,v
retrieving revision 1.6
diff -u -r1.6 StaticBucketMap.java
--- org/apache/commons/collections/StaticBucketMap.java 18 Oct 2002 07:03:12 -0000
1.6
+++ org/apache/commons/collections/StaticBucketMap.java 16 Feb 2003 21:47:18 -0000
@@ -62,12 +62,12 @@
import java.util.AbstractCollection;
import java.util.AbstractSet;
+import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
import java.util.Map;
-import java.util.Set;
-import java.util.ArrayList;
import java.util.NoSuchElementException;
+import java.util.Set;
/**
* A StaticBucketMap is an efficient, thread-safe implementation of
Index: org/apache/commons/collections/iterators/ArrayIterator.java
===================================================================
RCS file:
/home/cvspublic/jakarta-commons/collections/src/java/org/apache/commons/collections/iterators/ArrayIterator.java,v
retrieving revision 1.3
diff -u -r1.3 ArrayIterator.java
--- org/apache/commons/collections/iterators/ArrayIterator.java 15 Jan 2003 21:53:14
-0000 1.3
+++ org/apache/commons/collections/iterators/ArrayIterator.java 16 Feb 2003 21:47:18
+-0000
@@ -58,7 +58,6 @@
package org.apache.commons.collections.iterators;
import java.lang.reflect.Array;
-import java.util.Iterator;
import java.util.NoSuchElementException;
/**
Index: org/apache/commons/collections/iterators/ArrayListIterator.java
===================================================================
RCS file:
/home/cvspublic/jakarta-commons/collections/src/java/org/apache/commons/collections/iterators/ArrayListIterator.java,v
retrieving revision 1.2
diff -u -r1.2 ArrayListIterator.java
--- org/apache/commons/collections/iterators/ArrayListIterator.java 15 Jan 2003
21:53:14 -0000 1.2
+++ org/apache/commons/collections/iterators/ArrayListIterator.java 16 Feb 2003
+21:47:19 -0000
@@ -58,7 +58,6 @@
package org.apache.commons.collections.iterators;
import java.lang.reflect.Array;
-import java.util.ListIterator;
import java.util.NoSuchElementException;
/**
Index: org/apache/commons/collections/iterators/CollatingIterator.java
===================================================================
RCS file:
/home/cvspublic/jakarta-commons/collections/src/java/org/apache/commons/collections/iterators/CollatingIterator.java,v
retrieving revision 1.5
diff -u -r1.5 CollatingIterator.java
--- org/apache/commons/collections/iterators/CollatingIterator.java 15 Jan 2003
21:45:23 -0000 1.5
+++ org/apache/commons/collections/iterators/CollatingIterator.java 16 Feb 2003
+21:47:19 -0000
@@ -57,14 +57,14 @@
*/
package org.apache.commons.collections.iterators;
+import java.util.ArrayList;
+import java.util.BitSet;
import java.util.Collection;
import java.util.Collections;
import java.util.Comparator;
import java.util.Iterator;
import java.util.List;
import java.util.NoSuchElementException;
-import java.util.ArrayList;
-import java.util.BitSet;
/**
* Provides an ordered iteration over the elements contained in
Index: org/apache/commons/collections/iterators/ObjectArrayIterator.java
===================================================================
RCS file:
/home/cvspublic/jakarta-commons/collections/src/java/org/apache/commons/collections/iterators/ObjectArrayIterator.java,v
retrieving revision 1.3
diff -u -r1.3 ObjectArrayIterator.java
--- org/apache/commons/collections/iterators/ObjectArrayIterator.java 15 Jan 2003
21:51:57 -0000 1.3
+++ org/apache/commons/collections/iterators/ObjectArrayIterator.java 16 Feb 2003
+21:47:21 -0000
@@ -57,7 +57,6 @@
*/
package org.apache.commons.collections.iterators;
-import java.util.Iterator;
import java.util.NoSuchElementException;
/**
Index: org/apache/commons/collections/iterators/ObjectArrayListIterator.java
===================================================================
RCS file:
/home/cvspublic/jakarta-commons/collections/src/java/org/apache/commons/collections/iterators/ObjectArrayListIterator.java,v
retrieving revision 1.3
diff -u -r1.3 ObjectArrayListIterator.java
--- org/apache/commons/collections/iterators/ObjectArrayListIterator.java 15 Jan
2003 21:51:57 -0000 1.3
+++ org/apache/commons/collections/iterators/ObjectArrayListIterator.java 16 Feb
+2003 21:47:21 -0000
@@ -57,7 +57,6 @@
*/
package org.apache.commons.collections.iterators;
-import java.util.ListIterator;
import java.util.NoSuchElementException;
/**
Index: org/apache/commons/collections/iterators/SingletonIterator.java
===================================================================
RCS file:
/home/cvspublic/jakarta-commons/collections/src/java/org/apache/commons/collections/iterators/SingletonIterator.java,v
retrieving revision 1.3
diff -u -r1.3 SingletonIterator.java
--- org/apache/commons/collections/iterators/SingletonIterator.java 15 Jan 2003
21:51:05 -0000 1.3
+++ org/apache/commons/collections/iterators/SingletonIterator.java 16 Feb 2003
+21:47:22 -0000
@@ -57,7 +57,6 @@
*/
package org.apache.commons.collections.iterators;
-import java.util.Iterator;
import java.util.NoSuchElementException;
/**
Index: org/apache/commons/collections/iterators/SingletonListIterator.java
===================================================================
RCS file:
/home/cvspublic/jakarta-commons/collections/src/java/org/apache/commons/collections/iterators/SingletonListIterator.java,v
retrieving revision 1.3
diff -u -r1.3 SingletonListIterator.java
--- org/apache/commons/collections/iterators/SingletonListIterator.java 15 Jan 2003
21:51:05 -0000 1.3
+++ org/apache/commons/collections/iterators/SingletonListIterator.java 16 Feb 2003
+21:47:22 -0000
@@ -57,7 +57,6 @@
*/
package org.apache.commons.collections.iterators;
-import java.util.ListIterator;
import java.util.NoSuchElementException;
/**
* <p><code>SingletonIterator</code> is an {@link ListIterator} over a single
Index: org/apache/commons/collections/BulkTest.java
===================================================================
RCS file:
/home/cvspublic/jakarta-commons/collections/src/test/org/apache/commons/collections/BulkTest.java,v
retrieving revision 1.2
diff -u -r1.2 BulkTest.java
--- org/apache/commons/collections/BulkTest.java 12 Oct 2002 22:36:22 -0000
1.2
+++ org/apache/commons/collections/BulkTest.java 16 Feb 2003 22:04:14 -0000
@@ -1,15 +1,16 @@
package org.apache.commons.collections;
-import junit.framework.TestCase;
-import junit.framework.TestSuite;
import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.lang.reflect.Modifier;
-import java.util.Arrays;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
+
+import junit.framework.TestCase;
+import junit.framework.TestSuite;
/**
Index: org/apache/commons/collections/TestAll.java
===================================================================
RCS file:
/home/cvspublic/jakarta-commons/collections/src/test/org/apache/commons/collections/TestAll.java,v
retrieving revision 1.39
diff -u -r1.39 TestAll.java
--- org/apache/commons/collections/TestAll.java 7 Jan 2003 15:18:14 -0000 1.39
+++ org/apache/commons/collections/TestAll.java 16 Feb 2003 22:04:15 -0000
@@ -61,7 +61,9 @@
package org.apache.commons.collections;
-import junit.framework.*;
+import junit.framework.Test;
+import junit.framework.TestCase;
+import junit.framework.TestSuite;
/**
* Entry point for all Collections tests.
Index: org/apache/commons/collections/TestArrayList.java
===================================================================
RCS file:
/home/cvspublic/jakarta-commons/collections/src/test/org/apache/commons/collections/TestArrayList.java,v
retrieving revision 1.5
diff -u -r1.5 TestArrayList.java
--- org/apache/commons/collections/TestArrayList.java 12 Oct 2002 22:36:21 -0000
1.5
+++ org/apache/commons/collections/TestArrayList.java 16 Feb 2003 22:04:15 -0000
@@ -61,9 +61,10 @@
package org.apache.commons.collections;
+import java.util.ArrayList;
+
import junit.framework.Test;
import junit.framework.TestSuite;
-import java.util.ArrayList;
/**
* @author <a href="mailto:[EMAIL PROTECTED]">Jason van Zyl</a>
Index: org/apache/commons/collections/TestArrayStack.java
===================================================================
RCS file:
/home/cvspublic/jakarta-commons/collections/src/test/org/apache/commons/collections/TestArrayStack.java,v
retrieving revision 1.7
diff -u -r1.7 TestArrayStack.java
--- org/apache/commons/collections/TestArrayStack.java 21 Jun 2002 03:33:28 -0000
1.7
+++ org/apache/commons/collections/TestArrayStack.java 16 Feb 2003 22:04:15 -0000
@@ -61,8 +61,10 @@
package org.apache.commons.collections;
-import junit.framework.*;
-import java.util.*;
+import java.util.EmptyStackException;
+import java.util.List;
+
+import junit.framework.Test;
/**
* @author Craig McClanahan
Index: org/apache/commons/collections/TestBoundedFifoBuffer.java
===================================================================
RCS file:
/home/cvspublic/jakarta-commons/collections/src/test/org/apache/commons/collections/TestBoundedFifoBuffer.java,v
retrieving revision 1.3
diff -u -r1.3 TestBoundedFifoBuffer.java
--- org/apache/commons/collections/TestBoundedFifoBuffer.java 13 Oct 2002 13:00:23
-0000 1.3
+++ org/apache/commons/collections/TestBoundedFifoBuffer.java 16 Feb 2003 22:04:16
+-0000
@@ -60,10 +60,11 @@
*/
package org.apache.commons.collections;
-import junit.framework.Test;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
+
+import junit.framework.Test;
/**
* Test cases for BoundedFifoBuffer.
*/
Index: org/apache/commons/collections/TestCollectionUtils.java
===================================================================
RCS file:
/home/cvspublic/jakarta-commons/collections/src/test/org/apache/commons/collections/TestCollectionUtils.java,v
retrieving revision 1.13
diff -u -r1.13 TestCollectionUtils.java
--- org/apache/commons/collections/TestCollectionUtils.java 27 Jan 2003 23:19:28
-0000 1.13
+++ org/apache/commons/collections/TestCollectionUtils.java 16 Feb 2003 22:04:17
+-0000
@@ -61,8 +61,18 @@
package org.apache.commons.collections;
-import junit.framework.*;
-import java.util.*;
+import java.util.ArrayList;
+import java.util.Collection;
+import java.util.HashMap;
+import java.util.HashSet;
+import java.util.LinkedList;
+import java.util.List;
+import java.util.Map;
+import java.util.Set;
+
+import junit.framework.Test;
+import junit.framework.TestCase;
+import junit.framework.TestSuite;
/**
* @author Rodney Waldhoff
Index: org/apache/commons/collections/TestCommonsLinkedList.java
===================================================================
RCS file:
/home/cvspublic/jakarta-commons/collections/src/test/org/apache/commons/collections/TestCommonsLinkedList.java,v
retrieving revision 1.1
diff -u -r1.1 TestCommonsLinkedList.java
--- org/apache/commons/collections/TestCommonsLinkedList.java 7 Jan 2003 15:18:14
-0000 1.1
+++ org/apache/commons/collections/TestCommonsLinkedList.java 16 Feb 2003 22:04:17
+-0000
@@ -60,7 +60,7 @@
*/
package org.apache.commons.collections;
-import java.util.*;
+import java.util.LinkedList;
import junit.framework.Test;
Index: org/apache/commons/collections/TestCursorableLinkedList.java
===================================================================
RCS file:
/home/cvspublic/jakarta-commons/collections/src/test/org/apache/commons/collections/TestCursorableLinkedList.java,v
retrieving revision 1.7
diff -u -r1.7 TestCursorableLinkedList.java
--- org/apache/commons/collections/TestCursorableLinkedList.java 7 Jan 2003
23:44:19 -0000 1.7
+++ org/apache/commons/collections/TestCursorableLinkedList.java 16 Feb 2003
+22:04:18 -0000
@@ -61,8 +61,13 @@
package org.apache.commons.collections;
-import junit.framework.*;
-import java.util.*;
+import java.util.ArrayList;
+import java.util.HashSet;
+import java.util.Iterator;
+import java.util.List;
+import java.util.ListIterator;
+
+import junit.framework.Test;
/**
* @author Rodney Waldhoff
Index: org/apache/commons/collections/TestDoubleOrderedMap.java
===================================================================
RCS file:
/home/cvspublic/jakarta-commons/collections/src/test/org/apache/commons/collections/TestDoubleOrderedMap.java,v
retrieving revision 1.5
diff -u -r1.5 TestDoubleOrderedMap.java
--- org/apache/commons/collections/TestDoubleOrderedMap.java 18 Jun 2002 05:35:58
-0000 1.5
+++ org/apache/commons/collections/TestDoubleOrderedMap.java 16 Feb 2003 22:04:21
+-0000
@@ -63,9 +63,17 @@
-import junit.framework.*;
+import java.util.Collection;
+import java.util.ConcurrentModificationException;
+import java.util.HashMap;
+import java.util.HashSet;
+import java.util.Iterator;
+import java.util.LinkedList;
+import java.util.Map;
+import java.util.NoSuchElementException;
+import java.util.Set;
-import java.util.*;
+import junit.framework.Test;
/**
Index: org/apache/commons/collections/TestFastHashMap1.java
===================================================================
RCS file:
/home/cvspublic/jakarta-commons/collections/src/test/org/apache/commons/collections/TestFastHashMap1.java,v
retrieving revision 1.4
diff -u -r1.4 TestFastHashMap1.java
--- org/apache/commons/collections/TestFastHashMap1.java 13 Aug 2002 04:34:09
-0000 1.4
+++ org/apache/commons/collections/TestFastHashMap1.java 16 Feb 2003 22:04:21
+-0000
@@ -61,11 +61,10 @@
package org.apache.commons.collections;
-import junit.framework.Test;
-import junit.framework.TestCase;
-import junit.framework.TestSuite;
import java.util.HashMap;
import java.util.Map;
+
+import junit.framework.Test;
/**
* Test FastHashMap in <strong>fast</strong> mode.
Index: org/apache/commons/collections/TestLinkedList.java
===================================================================
RCS file:
/home/cvspublic/jakarta-commons/collections/src/test/org/apache/commons/collections/TestLinkedList.java,v
retrieving revision 1.1
diff -u -r1.1 TestLinkedList.java
--- org/apache/commons/collections/TestLinkedList.java 7 Jan 2003 15:18:14 -0000
1.1
+++ org/apache/commons/collections/TestLinkedList.java 16 Feb 2003 22:04:22 -0000
@@ -61,20 +61,10 @@
package org.apache.commons.collections;
-import java.io.IOException;
-import java.io.Serializable;
-import java.lang.reflect.InvocationTargetException;
-import java.lang.reflect.Method;
-import java.util.AbstractCollection;
-import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
-import java.util.Collections;
-import java.util.ConcurrentModificationException;
-import java.util.Iterator;
import java.util.LinkedList;
import java.util.List;
-import java.util.ListIterator;
import java.util.NoSuchElementException;
Index: org/apache/commons/collections/TestNodeCachingLinkedList.java
===================================================================
RCS file:
/home/cvspublic/jakarta-commons/collections/src/test/org/apache/commons/collections/TestNodeCachingLinkedList.java,v
retrieving revision 1.2
diff -u -r1.2 TestNodeCachingLinkedList.java
--- org/apache/commons/collections/TestNodeCachingLinkedList.java 7 Jan 2003
15:18:15 -0000 1.2
+++ org/apache/commons/collections/TestNodeCachingLinkedList.java 16 Feb 2003
+22:04:22 -0000
@@ -60,7 +60,7 @@
*/
package org.apache.commons.collections;
-import java.util.*;
+import java.util.LinkedList;
import junit.framework.Test;
/**
Index: org/apache/commons/collections/TestReferenceMap.java
===================================================================
RCS file:
/home/cvspublic/jakarta-commons/collections/src/test/org/apache/commons/collections/TestReferenceMap.java,v
retrieving revision 1.4
diff -u -r1.4 TestReferenceMap.java
--- org/apache/commons/collections/TestReferenceMap.java 7 Jan 2003 15:18:15
-0000 1.4
+++ org/apache/commons/collections/TestReferenceMap.java 16 Feb 2003 22:04:23
+-0000
@@ -61,9 +61,7 @@
package org.apache.commons.collections;
-import java.util.HashMap;
import java.util.Map;
-import java.util.Random;
import junit.framework.Test;
Index: org/apache/commons/collections/TestSetUtils.java
===================================================================
RCS file:
/home/cvspublic/jakarta-commons/collections/src/test/org/apache/commons/collections/TestSetUtils.java,v
retrieving revision 1.2
diff -u -r1.2 TestSetUtils.java
--- org/apache/commons/collections/TestSetUtils.java 18 Aug 2002 20:11:38 -0000
1.2
+++ org/apache/commons/collections/TestSetUtils.java 16 Feb 2003 22:04:23 -0000
@@ -60,10 +60,11 @@
*/
package org.apache.commons.collections;
-import junit.framework.Test;
import java.util.Collection;
-import java.util.Set;
import java.util.HashSet;
+import java.util.Set;
+
+import junit.framework.Test;
/**
Index: org/apache/commons/collections/TestUnboundedFifoBuffer.java
===================================================================
RCS file:
/home/cvspublic/jakarta-commons/collections/src/test/org/apache/commons/collections/TestUnboundedFifoBuffer.java,v
retrieving revision 1.3
diff -u -r1.3 TestUnboundedFifoBuffer.java
--- org/apache/commons/collections/TestUnboundedFifoBuffer.java 13 Oct 2002 13:00:23
-0000 1.3
+++ org/apache/commons/collections/TestUnboundedFifoBuffer.java 16 Feb 2003 22:04:23
+-0000
@@ -60,10 +60,11 @@
*/
package org.apache.commons.collections;
-import junit.framework.Test;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
+
+import junit.framework.Test;
/**
* Test cases for UnboundedFifoBuffer.
*/
Index: org/apache/commons/collections/comparators/TestComparator.java
===================================================================
RCS file:
/home/cvspublic/jakarta-commons/collections/src/test/org/apache/commons/collections/comparators/TestComparator.java,v
retrieving revision 1.6
diff -u -r1.6 TestComparator.java
--- org/apache/commons/collections/comparators/TestComparator.java 7 Jan 2003
15:18:15 -0000 1.6
+++ org/apache/commons/collections/comparators/TestComparator.java 16 Feb 2003
+22:04:23 -0000
@@ -1,7 +1,7 @@
package org.apache.commons.collections.comparators;
-import java.io.IOException;
import java.io.FileNotFoundException;
+import java.io.IOException;
import java.io.Serializable;
import java.util.Collections;
import java.util.Comparator;
Index: org/apache/commons/collections/iterators/TestArrayIterator.java
===================================================================
RCS file:
/home/cvspublic/jakarta-commons/collections/src/test/org/apache/commons/collections/iterators/TestArrayIterator.java,v
retrieving revision 1.2
diff -u -r1.2 TestArrayIterator.java
--- org/apache/commons/collections/iterators/TestArrayIterator.java 13 Dec 2002
12:10:48 -0000 1.2
+++ org/apache/commons/collections/iterators/TestArrayIterator.java 16 Feb 2003
+22:04:24 -0000
@@ -60,9 +60,11 @@
*/
package org.apache.commons.collections.iterators;
-import junit.framework.*;
import java.util.Iterator;
import java.util.NoSuchElementException;
+
+import junit.framework.Test;
+import junit.framework.TestSuite;
/**
* Tests the ArrayIterator to ensure that the next() method will actually
* perform the iteration rather than the hasNext() method.
Index: org/apache/commons/collections/iterators/TestArrayIterator2.java
===================================================================
RCS file:
/home/cvspublic/jakarta-commons/collections/src/test/org/apache/commons/collections/iterators/TestArrayIterator2.java,v
retrieving revision 1.2
diff -u -r1.2 TestArrayIterator2.java
--- org/apache/commons/collections/iterators/TestArrayIterator2.java 13 Dec 2002
12:10:48 -0000 1.2
+++ org/apache/commons/collections/iterators/TestArrayIterator2.java 16 Feb 2003
+22:04:24 -0000
@@ -60,9 +60,11 @@
*/
package org.apache.commons.collections.iterators;
-import junit.framework.*;
import java.util.Iterator;
import java.util.NoSuchElementException;
+
+import junit.framework.Test;
+import junit.framework.TestSuite;
/**
* Tests the ArrayIterator with primitive type arrays
*
Index: org/apache/commons/collections/iterators/TestCollatingIterator.java
===================================================================
RCS file:
/home/cvspublic/jakarta-commons/collections/src/test/org/apache/commons/collections/iterators/TestCollatingIterator.java,v
retrieving revision 1.1
diff -u -r1.1 TestCollatingIterator.java
--- org/apache/commons/collections/iterators/TestCollatingIterator.java 15 Aug 2002
23:13:52 -0000 1.1
+++ org/apache/commons/collections/iterators/TestCollatingIterator.java 16 Feb 2003
+22:04:25 -0000
@@ -61,10 +61,13 @@
package org.apache.commons.collections.iterators;
-import junit.framework.*;
-import java.util.Iterator;
-import java.util.Comparator;
import java.util.ArrayList;
+import java.util.Comparator;
+import java.util.Iterator;
+
+import junit.framework.Test;
+import junit.framework.TestSuite;
+
import org.apache.commons.collections.comparators.ComparableComparator;
/**
Index: org/apache/commons/collections/iterators/TestFilterListIterator.java
===================================================================
RCS file:
/home/cvspublic/jakarta-commons/collections/src/test/org/apache/commons/collections/iterators/TestFilterListIterator.java,v
retrieving revision 1.3
diff -u -r1.3 TestFilterListIterator.java
--- org/apache/commons/collections/iterators/TestFilterListIterator.java 1 Nov
2002 19:07:54 -0000 1.3
+++ org/apache/commons/collections/iterators/TestFilterListIterator.java 16 Feb
+2003 22:04:25 -0000
@@ -60,13 +60,15 @@
*/
package org.apache.commons.collections.iterators;
-import junit.framework.TestCase;
-import junit.framework.TestSuite;
-import junit.framework.Test;
import java.util.ArrayList;
import java.util.List;
import java.util.ListIterator;
import java.util.Random;
+
+import junit.framework.Test;
+import junit.framework.TestCase;
+import junit.framework.TestSuite;
+
import org.apache.commons.collections.Predicate;
/**
Index: org/apache/commons/collections/iterators/TestIterator.java
===================================================================
RCS file:
/home/cvspublic/jakarta-commons/collections/src/test/org/apache/commons/collections/iterators/TestIterator.java,v
retrieving revision 1.2
diff -u -r1.2 TestIterator.java
--- org/apache/commons/collections/iterators/TestIterator.java 13 Dec 2002 12:03:46
-0000 1.2
+++ org/apache/commons/collections/iterators/TestIterator.java 16 Feb 2003 22:04:26
+-0000
@@ -62,6 +62,7 @@
import java.util.Iterator;
import java.util.NoSuchElementException;
+
import org.apache.commons.collections.TestObject;
/**
* Base class for tetsing Iterator interface
Index: org/apache/commons/collections/iterators/TestSingletonIterator.java
===================================================================
RCS file:
/home/cvspublic/jakarta-commons/collections/src/test/org/apache/commons/collections/iterators/TestSingletonIterator.java,v
retrieving revision 1.3
diff -u -r1.3 TestSingletonIterator.java
--- org/apache/commons/collections/iterators/TestSingletonIterator.java 15 Jan 2003
21:54:12 -0000 1.3
+++ org/apache/commons/collections/iterators/TestSingletonIterator.java 16 Feb 2003
+22:04:26 -0000
@@ -57,9 +57,11 @@
*/
package org.apache.commons.collections.iterators;
-import junit.framework.*;
import java.util.Iterator;
import java.util.NoSuchElementException;
+
+import junit.framework.Test;
+import junit.framework.TestSuite;
/**
* Tests the SingletonIterator to ensure that the next() method will actually
Index: org/apache/commons/collections/iterators/TestSingletonListIterator.java
===================================================================
RCS file:
/home/cvspublic/jakarta-commons/collections/src/test/org/apache/commons/collections/iterators/TestSingletonListIterator.java,v
retrieving revision 1.3
diff -u -r1.3 TestSingletonListIterator.java
--- org/apache/commons/collections/iterators/TestSingletonListIterator.java 15 Jan
2003 21:54:12 -0000 1.3
+++ org/apache/commons/collections/iterators/TestSingletonListIterator.java 16 Feb
+2003 22:04:26 -0000
@@ -57,10 +57,12 @@
*/
package org.apache.commons.collections.iterators;
-import junit.framework.*;
import java.util.Iterator;
import java.util.ListIterator;
import java.util.NoSuchElementException;
+
+import junit.framework.Test;
+import junit.framework.TestSuite;
/**
* Tests the SingletonListIterator.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]