Ran perltidy
[catagits/Catalyst-Action-Serialize-Data-Serializer.git] / lib / Catalyst / Action / Deserialize / YAML.pm
index aa6c411..b972830 100644 (file)
@@ -16,14 +16,15 @@ use YAML::Syck;
 sub execute {
     my $self = shift;
     my ( $controller, $c, $test ) = @_;
+
     my $body = $c->request->body;
     if ($body) {
-        my $rdata = LoadFile($c->request->body);
+        my $rdata = LoadFile( $c->request->body );
         $c->request->data($rdata);
     } else {
-        $c->log->debug('I would have deserialized, but there was nothing in the body!');
+        $c->log->debug(
+            'I would have deserialized, but there was nothing in the body!');
     }
-};
+}
 
 1;