Organize imports only.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1022749 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2010-10-14 22:49:55 +00:00
parent cccbf94e72
commit 6d992c02da
16 changed files with 33 additions and 34 deletions

View File

@ -20,7 +20,6 @@
import java.lang.reflect.AccessibleObject;
import java.lang.reflect.Field;
import java.lang.reflect.Modifier;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;

View File

@ -17,8 +17,6 @@
package org.apache.commons.lang3.event;
import org.apache.commons.lang3.reflect.MethodUtils;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
@ -27,6 +25,8 @@
import java.util.HashSet;
import java.util.Set;
import org.apache.commons.lang3.reflect.MethodUtils;
/**
* Provides some useful event-based utility methods.
*

View File

@ -17,8 +17,8 @@
package org.apache.commons.lang3.text.translate;
import java.io.IOException;
import java.io.Writer;
import java.io.StringWriter;
import java.io.Writer;
import java.util.Locale;
/**

View File

@ -18,9 +18,8 @@
import java.io.IOException;
import java.io.Writer;
import java.util.EnumSet;
import java.util.Arrays;
import java.util.EnumSet;
/**
* Translates escaped unicode values of the form \\u+\d\d\d\d back to

View File

@ -18,8 +18,13 @@
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import static org.apache.commons.lang3.AnnotationUtilsTest.Stooge.*;
import static org.junit.Assert.*;
import static org.apache.commons.lang3.AnnotationUtilsTest.Stooge.CURLY;
import static org.apache.commons.lang3.AnnotationUtilsTest.Stooge.LARRY;
import static org.apache.commons.lang3.AnnotationUtilsTest.Stooge.MOE;
import static org.apache.commons.lang3.AnnotationUtilsTest.Stooge.SHEMP;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;

View File

@ -16,8 +16,6 @@
*/
package org.apache.commons.lang3;
import java.nio.CharBuffer;
import junit.framework.Assert;
import junit.framework.TestCase;

View File

@ -22,11 +22,11 @@
import java.util.Calendar;
import java.util.Date;
import junit.framework.TestCase;
import org.apache.commons.lang3.exception.CloneFailedException;
import org.apache.commons.lang3.mutable.MutableObject;
import junit.framework.TestCase;
/**
* Unit tests {@link org.apache.commons.lang3.ObjectUtils}.
*

View File

@ -16,7 +16,9 @@
*/
package org.apache.commons.lang3;
import static org.junit.Assert.*;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNull;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;

View File

@ -19,10 +19,10 @@
import java.util.ArrayList;
import java.util.HashMap;
import org.apache.commons.lang3.builder.ToStringStyleTest.Person;
import junit.framework.TestCase;
import org.apache.commons.lang3.builder.ToStringStyleTest.Person;
/**
* Unit tests {@link org.apache.commons.lang3.builder.ToStringStyle#SHORT_PREFIX_STYLE}.
*

View File

@ -28,7 +28,6 @@
import java.util.concurrent.ScheduledThreadPoolExecutor;
import java.util.concurrent.TimeUnit;
import org.apache.commons.lang3.concurrent.TimedSemaphore;
import org.easymock.EasyMock;
import org.junit.Test;

View File

@ -17,8 +17,6 @@
package org.apache.commons.lang3.event;
import junit.framework.TestCase;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.ByteArrayInputStream;
@ -30,6 +28,8 @@
import java.util.ArrayList;
import java.util.List;
import junit.framework.TestCase;
import org.easymock.EasyMock;
/**

View File

@ -16,8 +16,6 @@
*/
package org.apache.commons.lang3.event;
import junit.framework.TestCase;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.beans.PropertyChangeEvent;
@ -29,6 +27,8 @@
import java.util.Map;
import java.util.TreeMap;
import junit.framework.TestCase;
/**
* @since 3.0
* @version $Id$

View File

@ -18,10 +18,10 @@
import java.util.Date;
import org.apache.commons.lang3.exception.ContextedExceptionTest.ObjectWithFaultyToString;
import junit.framework.TestCase;
import org.apache.commons.lang3.exception.ContextedExceptionTest.ObjectWithFaultyToString;
/**
* JUnit tests for DefaultExceptionContext.
* @author D. Ashmore

View File

@ -16,29 +16,26 @@
*/
package org.apache.commons.lang3.reflect;
import java.lang.reflect.TypeVariable;
import java.util.List;
import org.junit.Test;
import java.io.Serializable;
import java.lang.reflect.Method;
import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type;
import java.lang.reflect.TypeVariable;
import java.net.URI;
import java.util.Arrays;
import java.util.Collection;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.TreeSet;
import org.junit.Assert;
import org.apache.commons.lang3.StringEscapeUtils;
import org.apache.commons.lang3.reflect.testbed.Foo;
import org.apache.commons.lang3.reflect.testbed.GenericParent;
import org.apache.commons.lang3.reflect.testbed.GenericTypeHolder;
import org.apache.commons.lang3.reflect.testbed.StringParameterizedChild;
import org.junit.Assert;
import org.junit.Test;
/**
* Test TypeUtils

View File

@ -19,10 +19,10 @@
import java.lang.reflect.Constructor;
import java.lang.reflect.Modifier;
import org.apache.commons.lang3.StringUtils;
import junit.framework.TestCase;
import org.apache.commons.lang3.StringUtils;
/**
* Unit tests for WordUtils class.
*

View File

@ -17,10 +17,10 @@
package org.apache.commons.lang3.text.translate;
import junit.framework.TestCase;
import java.io.StringWriter;
import java.io.IOException;
import java.io.StringWriter;
import junit.framework.TestCase;
/**
* Unit tests for {@link org.apache.commons.lang3.text.translate.LookupTranslator}.