1
0

Organize imports (don't use wildcards)

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/logging/trunk@1362902 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley
2012-07-18 12:08:08 +00:00
parent 3f5848ecbf
commit 7297a70b96
4 changed files with 21 additions and 6 deletions

View File

@@ -20,7 +20,13 @@ package org.apache.commons.logging.impl;
import java.lang.ref.ReferenceQueue;
import java.lang.ref.WeakReference;
import java.util.*;
import java.util.Collection;
import java.util.Enumeration;
import java.util.HashSet;
import java.util.Hashtable;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;
/**
* <p>Implementation of <code>Hashtable</code> that uses <code>WeakReference</code>'s

View File

@@ -17,7 +17,8 @@
package org.apache.commons.logging;
import junit.framework.*;
import junit.framework.Test;
import junit.framework.TestCase;
/**
* Test the ability to force the LogFactory class to use some

View File

@@ -17,7 +17,7 @@
package org.apache.commons.logging;
import junit.framework.*;
import junit.framework.TestCase;
import java.util.Hashtable;
/**

View File

@@ -18,9 +18,17 @@
package org.apache.commons.logging.impl;
import java.lang.ref.*;
import junit.framework.*;
import java.util.*;
import java.lang.ref.ReferenceQueue;
import java.lang.ref.WeakReference;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Enumeration;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;
import junit.framework.TestCase;
public class WeakHashtableTest extends TestCase {