Bug 507817 followup. Remove some code that was just triggering a warning and not doing anything. r=vlad

This commit is contained in:
Boris Zbarsky 2010-01-09 00:03:38 -05:00
Родитель e17ebdfd00
Коммит 878e855de5
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -87,8 +87,8 @@ nsStyleBorder::SetSubImage(PRUint8 aIndex, imgIContainer* aSubImage) const
inline imgIContainer*
nsStyleBorder::GetSubImage(PRUint8 aIndex) const
{
imgIContainer* subImage = 0;
if (0 <= aIndex && mSubImages.Count() > aIndex)
imgIContainer* subImage = nsnull;
if (aIndex < mSubImages.Count())
subImage = mSubImages[aIndex];
return subImage;
}