This commit is contained in:
nboyd%atg.com 2001-01-12 16:28:36 +00:00
Родитель 055775a495
Коммит 89d00fda22
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -259,7 +259,9 @@ public class Matrix implements Scriptable {
public boolean hasInstance(Scriptable value) {
Scriptable proto = value.getPrototype();
while (proto != null) {
if (proto.equals(this)) return true;
if (proto.equals(this))
return true;
proto = proto.getPrototype();
}
return false;