This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-collections.git
commit 708b1e10ec54dcc98182cd89ca0e94ece8003119 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat Jan 20 10:17:07 2024 -0500 Sort imports --- .../java/org/apache/commons/collections4/GuavaTestlibTest.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/test/java/org/apache/commons/collections4/GuavaTestlibTest.java b/src/test/java/org/apache/commons/collections4/GuavaTestlibTest.java index 3106b7fbe..1ea3705f9 100644 --- a/src/test/java/org/apache/commons/collections4/GuavaTestlibTest.java +++ b/src/test/java/org/apache/commons/collections4/GuavaTestlibTest.java @@ -22,10 +22,6 @@ import java.util.List; import java.util.Map; import java.util.function.Supplier; -import junit.framework.Test; -import junit.framework.TestCase; -import junit.framework.TestSuite; - import org.apache.commons.collections4.list.TreeList; import org.apache.commons.collections4.map.HashedMap; import org.apache.commons.collections4.map.LRUMap; @@ -42,6 +38,10 @@ import com.google.common.collect.testing.features.Feature; import com.google.common.collect.testing.features.ListFeature; import com.google.common.collect.testing.features.MapFeature; +import junit.framework.Test; +import junit.framework.TestCase; +import junit.framework.TestSuite; + /** * This test uses Google's Guava Testlib testing libraries to validate the * contract of collection classes in Commons Collections. This was introduced