removing some Dumpers
Brian Cassidy [Wed, 16 Jul 2008 17:23:53 +0000 (17:23 +0000)]
lib/Catalyst/Dispatcher.pm
t/lib/TestApp/Controller/Args.pm
t/live_priorities.t

index 8028712..96364e6 100644 (file)
@@ -114,7 +114,6 @@ message about unknown resource
 sub dispatch {
     my ( $self, $c ) = @_;
     if ( $c->action ) {
-use Data::Dumper; warn Dumper( $c->action, $c->action->namespace );
         $c->forward( join( '/', '', $c->action->namespace, '_DISPATCH' ) );
     }
 
index 6a448cd..6ec7539 100644 (file)
@@ -2,7 +2,6 @@ package TestApp::Controller::Args;
 
 use strict;
 use base 'Catalyst::Base';
-use Data::Dumper;
 
 sub args :Local  {
     my ( $self, $c ) = @_;
@@ -14,4 +13,4 @@ sub params :Local {
     $c->res->body( join('',@_) );
 }
 
-1;
\ No newline at end of file
+1;
index 785ae5d..e726027 100644 (file)
@@ -8,7 +8,6 @@ use lib "$FindBin::Bin/lib";
 
 use Test::More tests => 28;
 use Catalyst::Test 'TestApp';
-use Data::Dumper;
 
 local $^W = 0;