зеркало из https://github.com/mozilla/pjs.git
Fix build error.
This commit is contained in:
Родитель
e0d8e084df
Коммит
35a0af1014
|
@ -179,7 +179,7 @@ public class NativeObject extends ScriptableObject {
|
|||
{
|
||||
if (args.length != 0)
|
||||
if (args[0] instanceof Scriptable)
|
||||
if (thisObj == (Scriptable)args[0].getPrototype())
|
||||
if (thisObj == ((Scriptable)args[0]).getPrototype())
|
||||
return Boolean.TRUE;
|
||||
return Boolean.FALSE;
|
||||
}
|
||||
|
|
|
@ -179,7 +179,7 @@ public class NativeObject extends ScriptableObject {
|
|||
{
|
||||
if (args.length != 0)
|
||||
if (args[0] instanceof Scriptable)
|
||||
if (thisObj == (Scriptable)args[0].getPrototype())
|
||||
if (thisObj == ((Scriptable)args[0]).getPrototype())
|
||||
return Boolean.TRUE;
|
||||
return Boolean.FALSE;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче