From: David Lawrence Date: Fri, 20 Dec 2019 17:09:44 +0000 (-0500) Subject: no bug - Removed nocritic in secbugsreport.pl as no longer needed X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=80fded9e09570284b50a0bd32898498a4795aa21;p=thirdparty%2Fbugzilla.git no bug - Removed nocritic in secbugsreport.pl as no longer needed --- diff --git a/scripts/secbugsreport.pl b/scripts/secbugsreport.pl index fbe840f7e..826dc0b02 100644 --- a/scripts/secbugsreport.pl +++ b/scripts/secbugsreport.pl @@ -209,7 +209,7 @@ sub sorted_team_names_by_open_bugs { my ($report) = @_; my $bugs_by_team = $report->results->[-1]->{bugs_by_team}; my @sorted_team_names = sort { ## no critic qw(BuiltinFunctions::ProhibitReverseSortBlock - @{$bugs_by_team->{$b}->{open}} <=> @{$bugs_by_team->{$a}->{open}} ## no critic qw(Freenode::DollarAB) + @{$bugs_by_team->{$b}->{open}} <=> @{$bugs_by_team->{$a}->{open}} || $a cmp $b } keys %$teams; return \@sorted_team_names;