From 45e3ec58218103f73d10730b97f7c822ba3955c1 Mon Sep 17 00:00:00 2001 From: "bienvenu%netscape.com" Date: Wed, 25 Jun 2003 14:49:28 +0000 Subject: [PATCH] remove debugging code accidentally checked in with last checkin --- mailnews/imap/src/nsImapProtocol.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/mailnews/imap/src/nsImapProtocol.cpp b/mailnews/imap/src/nsImapProtocol.cpp index ae02ecc9ba1..cc5acc6bfba 100644 --- a/mailnews/imap/src/nsImapProtocol.cpp +++ b/mailnews/imap/src/nsImapProtocol.cpp @@ -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;