Fix warnings due to unused import statements

This commit is contained in:
Phillip Webb
2012-12-18 18:13:46 -08:00
committed by Chris Beams
parent fe039030a0
commit 731d5be644
81 changed files with 7 additions and 168 deletions

View File

@@ -16,8 +16,6 @@
package org.springframework.beans.factory.xml;
import junit.framework.TestCase;
import org.junit.Test;
import org.xml.sax.EntityResolver;
import org.xml.sax.InputSource;

View File

@@ -20,7 +20,6 @@ import static org.junit.Assert.assertEquals;
import org.junit.Test;
import org.springframework.beans.factory.BeanDefinitionStoreException;
import org.springframework.core.LocalVariableTableParameterNameDiscoverer;
import org.springframework.core.io.ClassPathResource;
import test.beans.DummyBean;

View File

@@ -17,17 +17,9 @@
package org.springframework.beans.support;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import junit.framework.TestCase;
import org.springframework.beans.BeanWrapper;
import org.springframework.beans.BeanWrapperImpl;
import test.beans.TestBean;
/**