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=cd2d008118f64efd8eda44c8cc88bb53e77c9363;hp=1649f35f725b2acb5da6d1b28fc18556a53b414e;hb=cb3d811c733d46b4b90e43987ab00e4a02be398b;hpb=94f74acdfa62a94db80eb08f12078f0e0d513fc3 diff --git a/lib/Catalyst/Action.pm b/lib/Catalyst/Action.pm index 1649f35..cd2d008 100644 --- a/lib/Catalyst/Action.pm +++ b/lib/Catalyst/Action.pm @@ -37,9 +37,6 @@ use overload ( # Codulate to execute to invoke the encapsulated action coderef '&{}' => sub { my $self = shift; sub { $self->execute(@_); }; }, - # Which action takes precedence - '<=>' => 'compare', - # Make general $stuff still work fallback => 1, @@ -124,8 +121,6 @@ Always returns true if Args is omitted. Compares 2 actions based on the value of the C attribute, with no C having the highest precedence. -C<< <=> >> is overloaded to use this method. - =head2 namespace Returns the private namespace this action lives in.