This commit is contained in:
ben%netscape.com 2000-10-21 03:35:57 +00:00
Родитель 27f2434ac2
Коммит 22d96b6c95
1 изменённых файлов: 1 добавлений и 3 удалений

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

@ -71,9 +71,7 @@ ArrayEnumerator.prototype = {
hasMoreElements: function ()
{
if (this.mIndex < this.mArray.length)
return true;
return false;
return this.mIndex < this.mArray.length;
}
};