Changed NS_ASSERTION to use NS_WARN_IF_FALSE. r=pavlov

This commit is contained in:
tbogard%aol.net 1999-11-01 21:24:24 +00:00
Родитель 40dff7f37d
Коммит 29401ecc5e
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -275,7 +275,7 @@ PRBool nsScanner::Append(const char* aBuffer, PRUint32 aLen){
// it won't break UCS2 file
// Hack Start
for(PRInt32 i=0;i<unicharLength;i++)
NS_ASSERTION(0x0000 != unichars[i],"found a null character");
NS_WARN_IF_FALSE(0x0000 != unichars[i], "found a null character");
//if(0x0000 == unichars[i])
//unichars[i] = 0x0020;
// Hack End

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

@ -275,7 +275,7 @@ PRBool nsScanner::Append(const char* aBuffer, PRUint32 aLen){
// it won't break UCS2 file
// Hack Start
for(PRInt32 i=0;i<unicharLength;i++)
NS_ASSERTION(0x0000 != unichars[i],"found a null character");
NS_WARN_IF_FALSE(0x0000 != unichars[i], "found a null character");
//if(0x0000 == unichars[i])
//unichars[i] = 0x0020;
// Hack End