diff options
author | Byron Jones <glob@mozilla.com> | 2015-06-10 05:31:37 +0200 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2015-06-10 05:31:37 +0200 |
commit | 2b4dfa90922be824b0e1c13267c1c481a3ad62ea (patch) | |
tree | 2bd73c5378e11d06e27491882a7a2e800ebf097a /Bugzilla | |
parent | 5ef264450d03ff5ce3f93ffa3ed97fc977b3ea93 (diff) | |
download | bugzilla-2b4dfa90922be824b0e1c13267c1c481a3ad62ea.tar.gz bugzilla-2b4dfa90922be824b0e1c13267c1c481a3ad62ea.tar.xz |
remove debugging
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Bug.pm | 1 |
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; } |