From 0c98a75f85c099bd502bf8d16e920ca34a255a93 Mon Sep 17 00:00:00 2001 From: "Gary D. Gregory" Date: Thu, 11 Oct 2007 01:34:13 +0000 Subject: [PATCH] Organize imports. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@583665 13f79535-47bb-0310-9956-ffa450edef68 --- src/test/org/apache/commons/lang/enums/EnumTest.java | 1 + src/test/org/apache/commons/lang/enums/ValuedEnumTest.java | 1 + .../commons/lang/exception/ExceptionUtilsTestCase.java | 4 ++-- src/test/org/apache/commons/lang/math/NumberUtilsTest.java | 1 + .../org/apache/commons/lang/text/CompositeFormatTest.java | 7 +++---- .../org/apache/commons/lang/text/StrSubstitutorTest.java | 4 ++-- 6 files changed, 10 insertions(+), 8 deletions(-) diff --git a/src/test/org/apache/commons/lang/enums/EnumTest.java b/src/test/org/apache/commons/lang/enums/EnumTest.java index 8f92e985a..1fc296239 100644 --- a/src/test/org/apache/commons/lang/enums/EnumTest.java +++ b/src/test/org/apache/commons/lang/enums/EnumTest.java @@ -30,6 +30,7 @@ import junit.framework.Test; import junit.framework.TestCase; import junit.framework.TestSuite; + import org.apache.commons.lang.SerializationUtils; /** diff --git a/src/test/org/apache/commons/lang/enums/ValuedEnumTest.java b/src/test/org/apache/commons/lang/enums/ValuedEnumTest.java index 3f970134c..bf3161411 100644 --- a/src/test/org/apache/commons/lang/enums/ValuedEnumTest.java +++ b/src/test/org/apache/commons/lang/enums/ValuedEnumTest.java @@ -24,6 +24,7 @@ import junit.framework.Test; import junit.framework.TestCase; import junit.framework.TestSuite; + import org.apache.commons.lang.SerializationUtils; /** diff --git a/src/test/org/apache/commons/lang/exception/ExceptionUtilsTestCase.java b/src/test/org/apache/commons/lang/exception/ExceptionUtilsTestCase.java index 044e60f0b..120346947 100644 --- a/src/test/org/apache/commons/lang/exception/ExceptionUtilsTestCase.java +++ b/src/test/org/apache/commons/lang/exception/ExceptionUtilsTestCase.java @@ -16,14 +16,14 @@ */ package org.apache.commons.lang.exception; -import java.lang.reflect.Constructor; -import java.lang.reflect.Modifier; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.PrintStream; import java.io.PrintWriter; import java.io.StringWriter; +import java.lang.reflect.Constructor; import java.lang.reflect.InvocationTargetException; +import java.lang.reflect.Modifier; import java.sql.SQLException; import java.util.List; diff --git a/src/test/org/apache/commons/lang/math/NumberUtilsTest.java b/src/test/org/apache/commons/lang/math/NumberUtilsTest.java index 5e19bab41..c9d2a7bf2 100644 --- a/src/test/org/apache/commons/lang/math/NumberUtilsTest.java +++ b/src/test/org/apache/commons/lang/math/NumberUtilsTest.java @@ -25,6 +25,7 @@ import junit.framework.TestCase; import junit.framework.TestSuite; import junit.textui.TestRunner; + import org.apache.commons.lang.SystemUtils; /** diff --git a/src/test/org/apache/commons/lang/text/CompositeFormatTest.java b/src/test/org/apache/commons/lang/text/CompositeFormatTest.java index 9abf118c7..9f04a4cce 100644 --- a/src/test/org/apache/commons/lang/text/CompositeFormatTest.java +++ b/src/test/org/apache/commons/lang/text/CompositeFormatTest.java @@ -17,18 +17,17 @@ package org.apache.commons.lang.text; -import java.text.Format; import java.text.FieldPosition; +import java.text.Format; import java.text.ParsePosition; +import java.text.SimpleDateFormat; +import java.util.Locale; import junit.framework.Test; import junit.framework.TestCase; import junit.framework.TestSuite; import junit.textui.TestRunner; -import java.text.SimpleDateFormat; -import java.util.Locale; - /** * Unit tests for {@link org.apache.commons.lang.text.CompositeFormat}. */ diff --git a/src/test/org/apache/commons/lang/text/StrSubstitutorTest.java b/src/test/org/apache/commons/lang/text/StrSubstitutorTest.java index a6fc439cc..2ee76d834 100644 --- a/src/test/org/apache/commons/lang/text/StrSubstitutorTest.java +++ b/src/test/org/apache/commons/lang/text/StrSubstitutorTest.java @@ -20,13 +20,13 @@ import java.util.HashMap; import java.util.Map; -import org.apache.commons.lang.mutable.MutableObject; - import junit.framework.Test; import junit.framework.TestCase; import junit.framework.TestSuite; import junit.textui.TestRunner; +import org.apache.commons.lang.mutable.MutableObject; + /** * Test class for StrSubstitutor. *