This commit is contained in:
kunfei
2023-03-21 12:43:54 +08:00
parent a25fbf3a95
commit c4ac73985d
2 changed files with 4 additions and 4 deletions
@@ -342,7 +342,7 @@ class RhinoScriptEngine : AbstractScriptEngine(), Invocable, Compilable {
scope: Scriptable,
thisObj: Scriptable,
args: Array<Any>
): Any {
): Any? {
var accCtxt: AccessControlContext? = null
val global = ScriptableObject.getTopLevelScope(scope)
val globalProto = global.prototype
@@ -358,7 +358,7 @@ class RhinoScriptEngine : AbstractScriptEngine(), Invocable, Compilable {
thisObj,
args
)
} as PrivilegedAction<Any>, accCtxt) else superDoTopCall(
} as PrivilegedAction<*>, accCtxt) else superDoTopCall(
callable,
cx,
scope,
@@ -373,7 +373,7 @@ class RhinoScriptEngine : AbstractScriptEngine(), Invocable, Compilable {
scope: Scriptable,
thisObj: Scriptable,
args: Array<Any>
): Any {
): Any? {
return super.doTopCall(callable, cx, scope, thisObj, args)
}
})