remove debugging code accidentally checked in with last checkin

This commit is contained in:
bienvenu%netscape.com 2003-06-25 14:49:28 +00:00
Родитель 96386bfc28
Коммит a1b1e71fd8
1 изменённых файлов: 0 добавлений и 4 удалений

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

@ -4197,10 +4197,6 @@ char* nsImapProtocol::CreateNewLineFromSocket()
}
} while (!newLine && !DeathSignalReceived()); // until we get the next line and haven't been interrupted
if (newLine && strlen(newLine) != numBytesInLine)
{
NS_ASSERTION(PR_FALSE, "line with nulls");
}
Log("CreateNewLineFromSocket", nsnull, newLine);
SetConnectionStatus(newLine && numBytesInLine ? 1 : -1); // set > 0 if string is not null or empty
return newLine;