Update of /cvsroot/freenet/freenet/src/freenet/support/test
In directory sc8-pr-cvs1:/tmp/cvs-serv13416/src/freenet/support/test
Modified Files:
SkiplistTest.java KeyTest.java RedBlackTreeTest.java
Log Message:
No functional changes. Fix lots of warnings from Eclipse about imports. Should speed
up compilation slightly, beautify code slightly.
Index: SkiplistTest.java
===================================================================
RCS file: /cvsroot/freenet/freenet/src/freenet/support/test/SkiplistTest.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -w -r1.3 -r1.4
--- SkiplistTest.java 7 Nov 2002 23:57:41 -0000 1.3
+++ SkiplistTest.java 30 Oct 2003 01:34:03 -0000 1.4
@@ -1,13 +1,11 @@
package freenet.support.test;
-import junit.framework.*;
-import java.util.Enumeration;
-import freenet.support.Walk;
+import java.util.Random;
+
+import junit.framework.TestCase;
import freenet.support.Comparable;
import freenet.support.Skiplist;
+import freenet.support.Walk;
import freenet.support.Skiplist.SkipNode;
-import freenet.support.RedBlackTree;
-import freenet.support.RedBlackTree.AbstractRBNode;
-import java.util.Random;
/**
* A test class for the Skiplist.
Index: KeyTest.java
===================================================================
RCS file: /cvsroot/freenet/freenet/src/freenet/support/test/KeyTest.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -w -r1.1 -r1.2
--- KeyTest.java 29 May 2002 20:29:25 -0000 1.1
+++ KeyTest.java 30 Oct 2003 01:34:03 -0000 1.2
@@ -1,7 +1,6 @@
package freenet.support.test;
-import junit.framework.*;
+import junit.framework.TestCase;
import freenet.Key;
-import freenet.KeyException;
import freenet.support.Fields;
/**
Index: RedBlackTreeTest.java
===================================================================
RCS file: /cvsroot/freenet/freenet/src/freenet/support/test/RedBlackTreeTest.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -w -r1.4 -r1.5
--- RedBlackTreeTest.java 10 Aug 2002 18:20:32 -0000 1.4
+++ RedBlackTreeTest.java 30 Oct 2003 01:34:03 -0000 1.5
@@ -1,18 +1,11 @@
package freenet.support.test;
-import junit.framework.*;
-
-import freenet.support.Comparable;
import freenet.support.BinaryTree;
-import freenet.support.BinaryTree.Node;
+import freenet.support.Comparable;
import freenet.support.RedBlackTree;
+import freenet.support.BinaryTree.Node;
import freenet.support.RedBlackTree.RBNode;
import freenet.support.RedBlackTree.RBNodeImpl;
-import freenet.support.Walk;
-import freenet.support.sort.*;
-
-import java.util.Hashtable;
-import java.util.Enumeration;
/**
_______________________________________________
cvs mailing list
[EMAIL PROTECTED]
http://dodo.freenetproject.org/cgi-bin/mailman/listinfo/cvs