X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst.pm;h=56260719f495ff86da8bee8d7416e0587828f473;hb=dacd8b0ea87f4c6a6f8cd52360007170835093d8;hp=928799950ee0f6f2ce11f68d5bd5b886e7663190;hpb=ab4df9f8c9261a664b604b054b5c52e377f99a8a;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 9287999..5626071 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -84,7 +84,7 @@ __PACKAGE__->stats_class('Catalyst::Stats'); # Remember to update this in Catalyst::Runtime as well! -our $VERSION = '5.89002'; +our $VERSION = '5.89003'; sub import { my ( $class, @arguments ) = @_; @@ -2604,7 +2604,8 @@ Sets up engine. sub engine_class { my $class = shift; - $class->engine_loader->catalyst_engine_class(@_); + confess("Setting ->engine_class manually is no longer supported. XXX FIXME") if scalar @_; + $class->engine_loader->catalyst_engine_class; } sub setup_engine {