This is an automated email from the ASF dual-hosted git repository.

henrib pushed a commit to branch JEXL-448
in repository https://gitbox.apache.org/repos/asf/commons-jexl.git


The following commit(s) were added to refs/heads/JEXL-448 by this push:
     new 94e80334 JEXL-448: checkstyle;
94e80334 is described below

commit 94e803342c92ab03d742358fe6bd5c1d61af2e83
Author: Henrib <[email protected]>
AuthorDate: Sun Nov 9 19:51:24 2025 +0100

    JEXL-448: checkstyle;
---
 .../apache/commons/jexl3/internal/RangeTest.java    |  5 +----
 .../commons/jexl3/internal/SourceCacheTest.java     | 21 ++++++++++-----------
 2 files changed, 11 insertions(+), 15 deletions(-)

diff --git a/src/test/java/org/apache/commons/jexl3/internal/RangeTest.java 
b/src/test/java/org/apache/commons/jexl3/internal/RangeTest.java
index 71e1f31e..4698546e 100644
--- a/src/test/java/org/apache/commons/jexl3/internal/RangeTest.java
+++ b/src/test/java/org/apache/commons/jexl3/internal/RangeTest.java
@@ -19,7 +19,6 @@ package org.apache.commons.jexl3.internal;
 import static org.junit.jupiter.api.Assertions.assertEquals;
 import static org.junit.jupiter.api.Assertions.assertFalse;
 import static org.junit.jupiter.api.Assertions.assertNotEquals;
-import static org.junit.jupiter.api.Assertions.assertNull;
 import static org.junit.jupiter.api.Assertions.assertThrows;
 import static org.junit.jupiter.api.Assertions.assertTrue;
 import static org.junit.jupiter.api.Assertions.fail;
@@ -28,10 +27,8 @@ import java.util.Collections;
 import java.util.Iterator;
 import java.util.NoSuchElementException;
 
-import org.apache.commons.jexl3.ConcurrentCache;
-import org.apache.commons.jexl3.JexlCache;
-import org.apache.commons.jexl3.JexlFeatures;
 import org.apache.commons.jexl3.JexlTestCase;
+
 import org.junit.jupiter.api.AfterEach;
 import org.junit.jupiter.api.BeforeEach;
 import org.junit.jupiter.api.Test;
diff --git 
a/src/test/java/org/apache/commons/jexl3/internal/SourceCacheTest.java 
b/src/test/java/org/apache/commons/jexl3/internal/SourceCacheTest.java
index b38b8acb..c4f71ae0 100644
--- a/src/test/java/org/apache/commons/jexl3/internal/SourceCacheTest.java
+++ b/src/test/java/org/apache/commons/jexl3/internal/SourceCacheTest.java
@@ -16,24 +16,23 @@
  */
 package org.apache.commons.jexl3.internal;
 
+import static org.junit.jupiter.api.Assertions.assertEquals;
+import static org.junit.jupiter.api.Assertions.assertFalse;
+import static org.junit.jupiter.api.Assertions.assertNotEquals;
+import static org.junit.jupiter.api.Assertions.assertNull;
+import static org.junit.jupiter.api.Assertions.assertTrue;
+
+import java.util.HashMap;
+import java.util.Map;
+
 import org.apache.commons.jexl3.ConcurrentCache;
 import org.apache.commons.jexl3.JexlBuilder;
 import org.apache.commons.jexl3.JexlCache;
 import org.apache.commons.jexl3.JexlEngine;
 import org.apache.commons.jexl3.JexlFeatures;
 import org.apache.commons.jexl3.JexlScript;
-import org.junit.jupiter.api.Test;
 
-import java.lang.ref.Reference;
-import java.lang.ref.WeakReference;
-import java.util.HashMap;
-import java.util.Map;
-
-import static org.junit.jupiter.api.Assertions.assertEquals;
-import static org.junit.jupiter.api.Assertions.assertFalse;
-import static org.junit.jupiter.api.Assertions.assertNotEquals;
-import static org.junit.jupiter.api.Assertions.assertNull;
-import static org.junit.jupiter.api.Assertions.assertTrue;
+import org.junit.jupiter.api.Test;
 
 public class SourceCacheTest {
 

Reply via email to