From: Florian Ragwitz Date: Sun, 8 Feb 2009 14:01:24 +0000 (+0000) Subject: Remove imported symbols after compile time in Catalyst::Engine. X-Git-Tag: 5.80001~123 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=d495753a373dd5be693bccde7737dfccbc635786 Remove imported symbols after compile time in Catalyst::Engine. --- diff --git a/lib/Catalyst/Engine.pm b/lib/Catalyst/Engine.pm index de287ea..45b1c7b 100644 --- a/lib/Catalyst/Engine.pm +++ b/lib/Catalyst/Engine.pm @@ -12,14 +12,14 @@ use HTTP::Headers; use URI::QueryParam; use Scalar::Util (); +use namespace::clean -except => 'meta'; + # input position and length has read_length => (is => 'rw'); has read_position => (is => 'rw'); has _prepared_write => (is => 'rw'); -no Moose; - # Amount of data to read from input on each pass our $CHUNKSIZE = 64 * 1024;