Update indentation
[gruntmaster-daemon.git] / lib / Gruntmaster / Daemon / Judge / Points.pm
index 6decaad3b2c3391e369020ce34e5c677f50ff508..b153948cbe2aff5e0cbc6507b2a1c7028a426178 100644 (file)
@@ -8,15 +8,15 @@ use Gruntmaster::Daemon::Constants qw/AC REJ/;
 use List::Util qw/sum/;
 use Log::Log4perl qw/get_logger/;
 
-our $VERSION = '5999.000_001';
+our $VERSION = '5999.000_002';
 
 ##################################################
 
 sub judge{
-  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)
+       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)
 }
 
 1;
This page took 0.010296 seconds and 4 git commands to generate.