[Catalyst-commits] r9255 - Catalyst-Runtime/5.80/trunk/lib/Catalyst
rafl at dev.catalyst.perl.org
rafl at dev.catalyst.perl.org
Sun Feb 8 14:01:24 GMT 2009
Author: rafl
Date: 2009-02-08 14:01:24 +0000 (Sun, 08 Feb 2009)
New Revision: 9255
Modified:
Catalyst-Runtime/5.80/trunk/lib/Catalyst/Engine.pm
Log:
Remove imported symbols after compile time in Catalyst::Engine.
Modified: Catalyst-Runtime/5.80/trunk/lib/Catalyst/Engine.pm
===================================================================
--- Catalyst-Runtime/5.80/trunk/lib/Catalyst/Engine.pm 2009-02-08 14:01:18 UTC (rev 9254)
+++ Catalyst-Runtime/5.80/trunk/lib/Catalyst/Engine.pm 2009-02-08 14:01:24 UTC (rev 9255)
@@ -12,14 +12,14 @@
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;
More information about the Catalyst-commits
mailing list