From 98d15c511d97f7ddc3e09ad634c2f49d345bcd37 Mon Sep 17 00:00:00 2001 From: "rhp%netscape.com" Date: Wed, 8 Dec 1999 02:49:46 +0000 Subject: [PATCH] Remove printf()'s that I missed earlier --- netwerk/streamconv/converters/mozTXTToHTMLConv.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/netwerk/streamconv/converters/mozTXTToHTMLConv.cpp b/netwerk/streamconv/converters/mozTXTToHTMLConv.cpp index 0b8743c16248..232d870dafb3 100644 --- a/netwerk/streamconv/converters/mozTXTToHTMLConv.cpp +++ b/netwerk/streamconv/converters/mozTXTToHTMLConv.cpp @@ -121,7 +121,6 @@ nsAutoString mozTXTToHTMLConv::CompleteAbbreviatedURL(const nsAutoString& text, const PRUint32 pos) { -printf("Compl.: text: -%s-, pos: %d, text[pos]: %d\n", text.ToNewCString(), pos, text[pos]); nsAutoString result; if (text[pos] == '@') { @@ -143,7 +142,6 @@ printf("Compl.: text: -%s-, pos: %d, text[pos]: %d\n", text.ToNewCString(), pos, result += text; } } -printf("Compl.: result: -%s-\n", result.ToNewCString()); return result; } @@ -371,7 +369,6 @@ mozTXTToHTMLConv::FindURL(const nsAutoString& text, const PRUint32 pos, const PRUint32 whathasbeendone, nsAutoString& outputHTML, PRInt32& replaceBefore, PRInt32& replaceAfter) { -printf("FindURL: text: -%s-, pos: %d, text[pos]: %d\n", text.ToNewCString(), pos, text[pos]); enum statetype {unchecked, invalid, startok, endok, success}; const modetype ranking[mozTXTToHTMLConv_numberOfModes] = {RFC1738, RFC2396E, freetext, abbreviated}; @@ -400,7 +397,6 @@ printf("FindURL: text: -%s-, pos: %d, text[pos]: %d\n", text.ToNewCString(), pos default: break; } -printf("FindURL: state: %d %d %d %d %d\n", state[0], state[1], state[2], state[3], state[4]); // Test, first successful mode wins, sequence defined by |ranking| PRInt32 iCheck = 0; // the currently tested modetype