1
0

Tidy imports only

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/logging/trunk@360479 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Simon Kitching
2006-01-01 07:42:12 +00:00
parent 2f2b9d43eb
commit 0137795092
2 changed files with 7 additions and 9 deletions

View File

@@ -16,19 +16,16 @@
package org.apache.commons.logging; package org.apache.commons.logging;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.net.URL; import java.net.URL;
import java.net.URLClassLoader; import java.net.URLClassLoader;
// TODO: use Hashtable instead of HashMap // TODO: use HashTable instead of HashMap for java1.2 support
import java.util.Map;
import java.util.HashMap; import java.util.HashMap;
import java.util.Iterator; import java.util.Iterator;
import java.util.Map;
import java.util.Enumeration;
import java.util.Vector;
import java.io.File;
import java.io.InputStream;
import java.io.IOException;
/** /**
* A ClassLoader which sees only specified classes, and which can be * A ClassLoader which sees only specified classes, and which can be

View File

@@ -17,9 +17,10 @@
package org.apache.commons.logging; package org.apache.commons.logging;
import java.util.Properties; import java.util.Properties;
import junit.framework.Test; import junit.framework.Test;
import junit.framework.TestSuite;
import junit.framework.TestResult; import junit.framework.TestResult;
import junit.framework.TestSuite;
/** /**
* Custom TestSuite class that can be used to control the context classloader * Custom TestSuite class that can be used to control the context classloader