summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;
}