rewrote _get_component_type_name
[catagits/Catalyst-Runtime.git] / lib / Catalyst.pm
index 83f5737..71b7c43 100644 (file)
@@ -1644,8 +1644,6 @@ sub finalize {
         $c->finalize_body;
     }
 
-    $c->finalize_ioc;
-
     $c->log_response;
 
     if ($c->use_stats) {
@@ -1763,14 +1761,6 @@ Finalizes uploads. Cleans up any temporary files.
 
 sub finalize_uploads { my $c = shift; $c->engine->finalize_uploads( $c, @_ ) }
 
-=head2 $c->finalize_ioc
-
-Flushes all services with Request lifecycle.
-
-=cut
-
-sub finalize_ioc { shift->container->flush_request_services() }
-
 =head2 $c->get_action( $action, $namespace )
 
 Gets an action in a given namespace.
@@ -2310,9 +2300,7 @@ The C<setup_components> config option is passed to both of the above methods.
 
 =cut
 
-sub setup_components {
-    shift->container->setup_components();
-}
+sub setup_components { shift->container->setup_components }
 
 =head2 locate_components