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-lang.git
commit 3be74c40e0f3cfd4e5752a45f32d112f3ca9ad36 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat Aug 24 14:30:17 2024 -0400 Sort imports --- src/test/java/org/apache/commons/lang3/function/FunctionsTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/apache/commons/lang3/function/FunctionsTest.java b/src/test/java/org/apache/commons/lang3/function/FunctionsTest.java index ee1d34667..324d5a727 100644 --- a/src/test/java/org/apache/commons/lang3/function/FunctionsTest.java +++ b/src/test/java/org/apache/commons/lang3/function/FunctionsTest.java @@ -18,9 +18,9 @@ package org.apache.commons.lang3.function; import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertNull; import static org.junit.jupiter.api.Assertions.assertTrue; -import static org.junit.jupiter.api.Assertions.assertFalse; import java.util.concurrent.atomic.AtomicBoolean; import java.util.function.Function;