Use RequestEvaluator.invokeDirectFunction() rather than ScriptingEngine.invoke()
This commit is contained in:
parent
38ef27fbce
commit
6f8907c6bd
1 changed files with 3 additions and 3 deletions
|
@ -485,9 +485,9 @@ public final class Skin {
|
||||||
// arguments[0] = new SystemMap(parameters);
|
// arguments[0] = new SystemMap(parameters);
|
||||||
}
|
}
|
||||||
|
|
||||||
Object value = reval.scriptingEngine.invoke(handlerObject,
|
Object value = reval.invokeDirectFunction(handlerObject,
|
||||||
funcName, arguments,
|
funcName,
|
||||||
false);
|
arguments);
|
||||||
|
|
||||||
// check if macro wrote out to response buffer
|
// check if macro wrote out to response buffer
|
||||||
if (buffer.length() == (bufLength + preLength)) {
|
if (buffer.length() == (bufLength + preLength)) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue