Remove gratuitous NS_WARNING()s.

This commit is contained in:
waterson%netscape.com 2000-05-04 23:34:25 +00:00
Родитель 3569791040
Коммит 5a99d555f5
1 изменённых файлов: 1 добавлений и 4 удалений

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

@ -249,10 +249,8 @@ RDFContainerImpl::RemoveElement(nsIRDFNode *aElement, PRBool aRenumber)
rv = IndexOf(aElement, &idx);
if (NS_FAILED(rv)) return rv;
if (idx < 0) {
NS_WARNING("attempt to remove non-existant element");
if (idx < 0)
return NS_OK;
}
// Remove the element.
nsCOMPtr<nsIRDFResource> ordinal;
@ -416,7 +414,6 @@ RDFContainerImpl::IndexOf(nsIRDFNode *aElement, PRInt32 *aIndex)
}
}
NS_WARNING("element not found");
*aIndex = -1;
return NS_OK;
}