]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
no bug - Removed nocritic in secbugsreport.pl as no longer needed
authorDavid Lawrence <dkl@mozilla.com>
Fri, 20 Dec 2019 17:09:44 +0000 (12:09 -0500)
committerDavid Lawrence <dkl@mozilla.com>
Fri, 20 Dec 2019 17:09:44 +0000 (12:09 -0500)
scripts/secbugsreport.pl

index fbe840f7e4274d275bdd1f02af0f09d0257e8147..826dc0b024ee78908030f2fce88dbe9a314f49ab 100644 (file)
@@ -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;