Fix some weirdo indentation
Dave Rolsky [Fri, 21 Jan 2011 20:17:36 +0000 (14:17 -0600)]
lib/Catalyst/Action/REST.pm

index 8228380..0009f02 100644 (file)
@@ -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.