summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Bug.pm
diff options
context:
space:
mode:
authorByron Jones <glob@mozilla.com>2015-06-10 05:31:37 +0200
committerByron Jones <glob@mozilla.com>2015-06-10 05:31:37 +0200
commit2b4dfa90922be824b0e1c13267c1c481a3ad62ea (patch)
tree2bd73c5378e11d06e27491882a7a2e800ebf097a /Bugzilla/Bug.pm
parent5ef264450d03ff5ce3f93ffa3ed97fc977b3ea93 (diff)
downloadbugzilla-2b4dfa90922be824b0e1c13267c1c481a3ad62ea.tar.gz
bugzilla-2b4dfa90922be824b0e1c13267c1c481a3ad62ea.tar.xz
remove debugging
Diffstat (limited to 'Bugzilla/Bug.pm')
-rw-r--r--Bugzilla/Bug.pm1
1 files changed, 0 insertions, 1 deletions
diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm
index bbd4d1087..d105dd005 100644
--- a/Bugzilla/Bug.pm
+++ b/Bugzilla/Bug.pm
@@ -3913,7 +3913,6 @@ sub groups_in {
sub in_group {
my ($self, $group) = @_;
- print STDERR 'bug ' . $self->id . " (" . $group->name . ")\n";
return grep($_->id == $group->id, @{$self->groups_in}) ? 1 : 0;
}