Add perlcritic test and make code comply
[gruntmaster-daemon.git] / lib / Gruntmaster / Daemon / Judge / Points.pm
index b153948cbe2aff5e0cbc6507b2a1c7028a426178..66286b22806d4c3cdb35c3bf161355f79f30848e 100644 (file)
@@ -8,12 +8,12 @@ use Gruntmaster::Daemon::Constants qw/AC REJ/;
 use List::Util qw/sum/;
 use Log::Log4perl qw/get_logger/;
 
-our $VERSION = '5999.000_002';
+our $VERSION = '5999.000_004';
 
 ##################################################
 
 sub judge{
-       no warnings qw/numeric/;
+       no warnings qw/numeric/; ## no critic (ProhibitNoWarnings)
        get_logger->trace("Judging results: @_");
        my $points = sum 0, grep { !ref } @_;
        $points == 100 ? (result => AC, result_text => 'Accepted') : (result => REJ, result_text => "$points points", points => $points)
@@ -31,7 +31,7 @@ Gruntmaster::Daemon::Judge::Points - 0 to 100 points IOI-style judge
 =head1 SYNOPSIS
 
   use Gruntmaster::Daemon::Judge::Points;
-  Gruntmaster::Daemon::Judge::Points->judge($result1, $result2, $result3, ...);
+  Gruntmaster::Daemon::Judge::Points::judge($result1, $result2, $result3, ...);
 
 =head1 DESCRIPTION
 
This page took 0.010305 seconds and 4 git commands to generate.