From: Dave Rolsky Date: Fri, 21 Jan 2011 20:17:36 +0000 (-0600) Subject: Fix some weirdo indentation X-Git-Tag: 0.89~11 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Action-REST.git;a=commitdiff_plain;h=82b48c6183ec3db0a8799e1494dedaf1c76618e5 Fix some weirdo indentation --- diff --git a/lib/Catalyst/Action/REST.pm b/lib/Catalyst/Action/REST.pm index 8228380..0009f02 100644 --- a/lib/Catalyst/Action/REST.pm +++ b/lib/Catalyst/Action/REST.pm @@ -94,8 +94,8 @@ sub dispatch { if ( $code = $controller->action_for($rest_method) ) { $c->execute( $self->class, $self, @{ $c->req->args } ); # Execute normal 'foo' action. return $c->forward( $code, $c->req->args ); # Forward to foo_GET if it's an action - } - elsif ($code = $controller->can($rest_method)) { + } + elsif ($code = $controller->can($rest_method)) { # Execute normal action $c->execute( $self->class, $self, @{ $c->req->args } ); $name = $rest_method; # Stash name and code to run 'foo_GET' like an action below.