Skip to content

Commit

Permalink
JEXL-414: fixing wrong import order;
Browse files Browse the repository at this point in the history
  • Loading branch information
Henri Biestro committed Nov 18, 2023
1 parent 4ca9468 commit d9a31fd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/main/java/org/apache/commons/jexl3/JexlCache.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ public interface JexlCache<K, V> {
*
* @param key the cache entry key
* @param script the cache entry value
* @return the previously associated value if any
*/
V put(K key, V script);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
*/
package org.apache.commons.jexl3.internal;

import java.lang.ref.SoftReference;
import java.util.Collection;
import java.util.Collections;
import java.util.Map;
import java.lang.ref.SoftReference;

import com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@
import java.util.function.IntFunction;
import java.util.function.Predicate;

import org.apache.commons.jexl3.JexlCache;
import org.apache.commons.jexl3.JexlArithmetic;
import org.apache.commons.jexl3.JexlBuilder;
import org.apache.commons.jexl3.JexlCache;
import org.apache.commons.jexl3.JexlContext;
import org.apache.commons.jexl3.JexlEngine;
import org.apache.commons.jexl3.JexlException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
*/
package org.apache.commons.jexl3.internal;

import java.lang.ref.SoftReference;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.lang.ref.SoftReference;

import org.apache.commons.jexl3.JexlCache;

Expand Down

0 comments on commit d9a31fd

Please sign in to comment.