Moved first-level index to a new controller so inheritence doesn't break
[catagits/Catalyst-Runtime.git] / t / live / lib / TestApp / Controller / Action.pm
index 3352415..acd8385 100644 (file)
@@ -9,11 +9,6 @@ sub begin : Private {
     $c->response->content_type('text/plain; charset=utf-8');
 }
 
-sub index : Private {
-    my ( $self, $c ) = @_;
-    $c->res->body( 'Action index' );
-}
-
 sub default : Private {
     my ( $self, $c ) = @_;
     $c->res->output("Error - TestApp::Controller::Action\n");