I am a twit

git-svn-id: svn://10.0.0.236/trunk@81569 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
ben%netscape.com 2000-10-21 03:35:57 +00:00
parent bbd12b670d
commit 9ce37484ac

View File

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