whitespace cleanup
[catagits/Catalyst-Runtime.git] / lib / Catalyst / ActionRole / HTTPMethods.pm
index d0ee99c..f189b34 100644 (file)
@@ -18,14 +18,13 @@ around ['match','match_captures'] => sub {
   return 0 unless $self->$orig($ctx, @args);
 
   my $expected = $ctx->req->method;
-  warn $expected;
   return $self->_has_expected_http_method($expected);
 };
 
 around 'list_extra_info' => sub {
   my ($orig, $self, @args) = @_;
   return {
-    %{ $self->$orig(@args) }, 
+    %{ $self->$orig(@args) },
     HTTP_METHODS => [sort $self->allowed_http_methods],
   };
 };