More ->config fixes + Changelog
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Action.pm
index 8237cc0..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,