X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FBase.pm;h=63b9ba6bc4577155a901d12317e022521ba59b7f;hb=9992a5990019714a7272a6b656acae25d95e46c3;hp=6ef8fd3a1ab465beca5eeffea1a1b72871a04cbd;hpb=dec1adb07ece5c25d6e91cc3b1670ce22d12e445;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Base.pm b/lib/Catalyst/Base.pm index 6ef8fd3..63b9ba6 100644 --- a/lib/Catalyst/Base.pm +++ b/lib/Catalyst/Base.pm @@ -1,13 +1,14 @@ package Catalyst::Base; use Moose; BEGIN { extends 'Catalyst::Controller' } -no Moose; after 'BUILD' => sub { my $self = shift; warn(ref($self) . " is using the deprecated Catalyst::Base, update your application as this will be removed in the next major release"); }; +no Moose; + 1; __END__