Changed default scripting engine to helma.scripting.rhino.RhinoEngine.

This commit is contained in:
hns 2003-06-16 19:48:35 +00:00
parent 5f46bdf3a2
commit 5431daadcf

View file

@ -77,7 +77,7 @@ public final class RequestEvaluator implements Runnable {
protected void initScriptingEngine() {
if (scriptingEngine == null) {
String engineClassName = app.getProperty("scriptingEngine",
"helma.scripting.fesi.PhantomEngine");
"helma.scripting.rhino.RhinoEngine");
try {
Class clazz = app.getClassLoader().loadClass(engineClassName);