X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst%2FAction.pm;h=af65452ac733b6c12f1a7fcb14e1db89493f161f;hp=ee9d7118800848ef1547bcfed4bd9cb0cdf7102c;hb=829b22f766b0b1d1a09a6ce152abe48ad9bde5ec;hpb=77d892df0c89bb233feac1a72e701b94ba6bcba5 diff --git a/lib/Catalyst/Action.pm b/lib/Catalyst/Action.pm index ee9d711..af65452 100644 --- a/lib/Catalyst/Action.pm +++ b/lib/Catalyst/Action.pm @@ -55,8 +55,6 @@ use overload ( no warnings 'recursion'; -#__PACKAGE__->mk_accessors(qw/class namespace reverse attributes name code/); - sub dispatch { # Execute ourselves against a context my ( $self, $c ) = @_; return $c->execute( $self->class, $self ); @@ -105,7 +103,9 @@ and so on. This determines how the action is dispatched to. =head2 class -Returns the class name where this action is defined. +Returns the name of the component where this action is defined. +Derived by calling the L +method on each component. =head2 code