fix for regression bug #138647. turn off some code that was for #134743.

until I figure it out.  r/sr=bienvenu
This commit is contained in:
sspitzer%netscape.com 2002-04-26 19:52:41 +00:00
parent 17548dbe90
commit 1fcb78d629

View File

@ -62,6 +62,9 @@ nsAbDirProperty::nsAbDirProperty(void)
nsAbDirProperty::~nsAbDirProperty(void)
{
#if 0
// this code causes a regression #138647
// don't turn it on until you figure it out
if (m_AddressList) {
PRUint32 count;
nsresult rv;
@ -71,6 +74,7 @@ nsAbDirProperty::~nsAbDirProperty(void)
for (i = count - 1; i >= 0; i--)
m_AddressList->RemoveElementAt(i);
}
#endif
}
NS_IMPL_ISUPPORTS1(nsAbDirProperty,nsIAbDirectory)