mro compat stuff
[catagits/Catalyst-Runtime.git] / lib / Catalyst / ActionContainer.pm
index a51f90a..61fd0a9 100644 (file)
@@ -15,16 +15,10 @@ to represent the various dispatch points in your application.
 
 =cut
 
-use Class::C3;
+use MRO::Compat;
+use mro 'c3';
 use Moose;
 
-use overload (
-
-    # Stringify to path part for tree search
-    q{""} => sub { shift->part },
-
-);
-
 has part => (is => 'rw', required => 1, lazy => 1, default => sub { {} });
 has actions => (is => 'rw', required => 1, lazy => 1, default => sub { {} });