This commit is contained in:
norris%netscape.com 2000-04-20 22:36:46 +00:00
Родитель e0d8e084df
Коммит 35a0af1014
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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;
}