X-Git-Url: http://git.ieval.ro/?p=gruntmaster-daemon.git;a=blobdiff_plain;f=lib%2FGruntmaster%2FDaemon%2FJudge%2FPoints.pm;h=4e0264f10d5bb11629d1635188c1728705389db9;hp=66286b22806d4c3cdb35c3bf161355f79f30848e;hb=3fa65372157835ebd1b9d286d18bd96cc832f756;hpb=99d3711026b621247d46551b38f19c34f26342bd diff --git a/lib/Gruntmaster/Daemon/Judge/Points.pm b/lib/Gruntmaster/Daemon/Judge/Points.pm index 66286b2..4e0264f 100644 --- a/lib/Gruntmaster/Daemon/Judge/Points.pm +++ b/lib/Gruntmaster/Daemon/Judge/Points.pm @@ -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_004'; +our $VERSION = '5999.000_005'; ################################################## sub judge{ - no warnings qw/numeric/; ## no critic (ProhibitNoWarnings) + no warnings qw/numeric/; 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)