diff options
author | mkanat%bugzilla.org <> | 2008-01-29 08:47:01 +0100 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2008-01-29 08:47:01 +0100 |
commit | 49f2c30e0f0c82fdfc65f165996ee6d41ad67edb (patch) | |
tree | 7d8c0fdf296c9042e3203cb4ad541a7cf610ad55 /Bugzilla | |
parent | 9c9ddf6f574a6b6806fac49912e512757e996fc6 (diff) | |
download | bugzilla-49f2c30e0f0c82fdfc65f165996ee6d41ad67edb.tar.gz bugzilla-49f2c30e0f0c82fdfc65f165996ee6d41ad67edb.tar.xz |
Bug 414474: Remove debugging code from Search.pm that was left in from bug 399371.
Patch By Jesse Clark <jjclark1982@gmail.com> r=mkanat, a=mkanat
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Search.pm | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm index 07038153f..33cc1135e 100644 --- a/Bugzilla/Search.pm +++ b/Bugzilla/Search.pm @@ -1964,10 +1964,6 @@ sub _anyexact { my ($f, $ff, $v, $q, $term) = @func_args{qw(f ff v q term)}; my $dbh = Bugzilla->dbh; - use Data::Dumper; - open DEBUG, ">/tmp/debug"; - print DEBUG Dumper($self); - close DEBUG; my @list; foreach my $w (split(/,/, $$v)) { if ($w eq "---" && $$f !~ /resolution/) { |