Remove use of overload
[catagits/Catalyst-Runtime.git] / lib / Catalyst / ActionContainer.pm
index a51f90a..31e36cd 100644 (file)
@@ -18,13 +18,6 @@ to represent the various dispatch points in your application.
 use Class::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 { {} });