From 3a94c2e211df64dbcbd2b396a12e4bf1f3cf59aa Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Mon, 29 Jun 2015 12:49:57 +0200 Subject: [PATCH] ClientJS: cosmetics (alignment/indentation) --- SL/ClientJS.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SL/ClientJS.pm b/SL/ClientJS.pm index c6e22f3d5..f1c949e5f 100644 --- a/SL/ClientJS.pm +++ b/SL/ClientJS.pm @@ -139,10 +139,10 @@ sub action { $method = (delete($self->{_prefix}) || '') . $method; my $num_args = $supported_methods{$method}; - croak "Unsupported jQuery action: $method" unless defined $num_args; + croak "Unsupported jQuery action: $method" unless defined $num_args; if ($num_args > 0) { - croak "Parameter count mismatch for $method(actual: " . scalar(@args) . " wanted: $num_args)" if scalar(@args) != $num_args; + croak "Parameter count mismatch for $method(actual: " . scalar(@args) . " wanted: $num_args)" if scalar(@args) != $num_args; } else { $num_args *= -1; croak "Parameter count mismatch for $method(actual: " . scalar(@args) . " wanted at least: $num_args)" if scalar(@args) < $num_args; @@ -151,7 +151,7 @@ sub action { foreach my $idx (0..$num_args - 1) { # Force flattening from SL::Presenter::EscapedText. - $args[$idx] = "" . $args[$idx] if ref($args[$idx]) eq 'SL::Presenter::EscapedText'; + $args[$idx] = "" . $args[$idx] if ref($args[$idx]) eq 'SL::Presenter::EscapedText'; } push @{ $self->_actions }, [ $method, @args ]; -- 2.20.1