Less lies in the deprecated block comment in Dispatcher.pm as it's throwing people off
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Action.pm
index 1649f35..cd2d008 100644 (file)
@@ -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<Args> attribute, with no C<Args>
 having the highest precedence.
 
-C<< <=> >> is overloaded to use this method.
-
 =head2 namespace
 
 Returns the private namespace this action lives in.