This is an automated email from the ASF dual-hosted git repository.
henrib pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-jexl.git
The following commit(s) were added to refs/heads/master by this push:
new 359a170 JEXL-235: update engine version to 3.3;
359a170 is described below
commit 359a1702ffefe178b85b50c4945ef9cb75538753
Author: henrib <[email protected]>
AuthorDate: Thu Feb 10 21:49:07 2022 +0100
JEXL-235: update engine version to 3.3;
---
.../commons/jexl3/scripting/JexlScriptEngineFactory.java | 13 ++++---------
1 file changed, 4 insertions(+), 9 deletions(-)
diff --git
a/src/main/java/org/apache/commons/jexl3/scripting/JexlScriptEngineFactory.java
b/src/main/java/org/apache/commons/jexl3/scripting/JexlScriptEngineFactory.java
index 760b8a3..29bbddf 100644
---
a/src/main/java/org/apache/commons/jexl3/scripting/JexlScriptEngineFactory.java
+++
b/src/main/java/org/apache/commons/jexl3/scripting/JexlScriptEngineFactory.java
@@ -17,18 +17,13 @@
package org.apache.commons.jexl3.scripting;
-import java.io.IOException;
-import java.net.URL;
-import java.util.Arrays;
-import java.util.Collections;
-import java.util.Enumeration;
-import java.util.List;
-import java.util.jar.Attributes;
-import java.util.jar.Manifest;
+import org.apache.commons.jexl3.parser.StringParser;
import javax.script.ScriptEngine;
import javax.script.ScriptEngineFactory;
-import org.apache.commons.jexl3.parser.StringParser;
+import java.util.Arrays;
+import java.util.Collections;
+import java.util.List;
/**
* Implements the JEXL ScriptEngineFactory for JSF-223.