remove an unnecessary if check

This commit is contained in:
scott%scott-macgregor.org 2004-12-22 22:55:15 +00:00
Родитель 1213febb5b
Коммит 21d88aabae
1 изменённых файлов: 1 добавлений и 2 удалений

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

@ -368,8 +368,7 @@ Feed.prototype.parseAsRSS1 = function() {
this.itemsToStore[index++] = item;
}
if (index) // at least one item to store?
this.storeNextItem();
this.storeNextItem();
}
Feed.prototype.parseAsAtom = function() {