diff options
author | terry%mozilla.org <> | 1999-05-25 02:55:43 +0000 |
---|---|---|
committer | terry%mozilla.org <> | 1999-05-25 02:55:43 +0000 |
commit | 2dc596b761b1c848e837026be9a73c6b8f9aa3ad (patch) | |
tree | 39845342bafc70ebab406abab626b396fc7d33b2 | |
parent | fb194def24fb9d971a7ab28876090ec012dded88 (diff) | |
download | bugs-2dc596b761b1c848e837026be9a73c6b8f9aa3ad.tar bugs-2dc596b761b1c848e837026be9a73c6b8f9aa3ad.tar.gz bugs-2dc596b761b1c848e837026be9a73c6b8f9aa3ad.tar.bz2 bugs-2dc596b761b1c848e837026be9a73c6b8f9aa3ad.tar.xz bugs-2dc596b761b1c848e837026be9a73c6b8f9aa3ad.zip |
Get rid of stupid debugging code.
-rw-r--r-- | globals.pl | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/globals.pl b/globals.pl index be0a88857..e1e406702 100644 --- a/globals.pl +++ b/globals.pl @@ -78,13 +78,8 @@ sub FetchOneColumn { sub AppendComment { my ($bugid,$who,$comment) = (@_); - open(DEBUG, ">/tmp/debug"); - print DEBUG "A $comment"; $comment =~ s/\r\n/\n/g; # Get rid of windows-style line endings. - print DEBUG "B $comment"; $comment =~ s/\r/\n/g; # Get rid of mac-style line endings. - print DEBUG "C $comment"; - close DEBUG; if ($comment =~ /^\s*$/) { # Nothin' but whitespace. return; } |