tabs => spaces
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Controller.pm
index 1e03eed..4becc00 100644 (file)
@@ -18,8 +18,8 @@ Catalyst::Controller - Catalyst Controller base class
   use base qw/Catalyst::Controller;
 
   sub foo : Local { 
-       my ($self,$c,@args) = @_;
-       ... 
+    my ($self,$c,@args) = @_;
+    ... 
   } # Dispatches to /search/foo
 
 =head1 DESCRIPTION
@@ -292,11 +292,6 @@ sub _parse_MyAction_attr {
     return ( 'ActionClass', $value );
 }
 
-sub _parse_PathPrefix_attr {
-    my ( $self, $c, $name, $value ) = @_;
-    return PathPart => $self->path_prefix;
-}
-
 1;
 
 __END__