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 e4b6b39 commit 75e38cb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions src/main/java/org/apache/commons/jexl3/JexlCache.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
*/
package org.apache.commons.jexl3;

import org.apache.commons.jexl3.internal.ConcurrentCache;
import org.apache.commons.jexl3.internal.SoftCache;

import java.util.Collection;
import java.util.Collections;
import java.util.Map;
import java.util.function.IntFunction;

import org.apache.commons.jexl3.internal.ConcurrentCache;
import org.apache.commons.jexl3.internal.SoftCache;

/**
* Caching scripts or templates interface.
* @param <K> source
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 com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap;

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

import com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap;

/**
* A cache whose underlying map is a ConcurrentLinkedHashMap.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@
*/
package org.apache.commons.jexl3.internal;

import org.apache.commons.jexl3.JexlCache;

import java.lang.ref.SoftReference;
import java.util.ArrayList;
import java.util.Collection;
Expand All @@ -26,6 +24,8 @@
import java.util.Map;
import java.util.Set;

import org.apache.commons.jexl3.JexlCache;

/**
* A soft referenced cache.
* <p>
Expand Down

0 comments on commit 75e38cb

Please sign in to comment.