Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloffner committed Dec 17, 2024
1 parent b14db8e commit ff3bf4e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion loader/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<project default="core" basedir="." name="Lucee"
xmlns:resolver="antlib:org.apache.maven.resolver.ant">

<property name="version" value="6.1.2.11-SNAPSHOT"/>
<property name="version" value="6.1.2.12-SNAPSHOT"/>

<taskdef uri="antlib:org.apache.maven.resolver.ant" resource="org/apache/maven/resolver/ant/antlib.xml">
<classpath>
Expand Down
2 changes: 1 addition & 1 deletion loader/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>org.lucee</groupId>
<artifactId>lucee</artifactId>
<version>6.1.2.11-SNAPSHOT</version>
<version>6.1.2.12-SNAPSHOT</version>
<packaging>jar</packaging>

<name>Lucee Loader Build</name>
Expand Down
3 changes: 0 additions & 3 deletions loader/src/main/java/lucee/runtime/script/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@ public static void main(final String args[]) throws Exception {
final int dialect = CFMLEngine.DIALECT_CFML;
if (code == null) printUsage("-e is missing", System.err);

final LuceeScriptEngineFactory factory = new LuceeScriptEngineFactory();
System.out.println(factory.getScriptEngine().eval(code));

final ScriptEngine engine = new ScriptEngineManager().getEngineByName(lang);
if (engine == null) System.out.println("could not load an engine with the name:" + lang);
else System.out.println(engine.eval(code));
Expand Down

0 comments on commit ff3bf4e

Please sign in to comment.