[Catalyst-commits] r9740 - Catalyst-Runtime/5.80/trunk/lib/Catalyst

rafl at dev.catalyst.perl.org rafl at dev.catalyst.perl.org
Sat Apr 18 19:39:17 GMT 2009


Author: rafl
Date: 2009-04-18 20:39:17 +0100 (Sat, 18 Apr 2009)
New Revision: 9740

Modified:
   Catalyst-Runtime/5.80/trunk/lib/Catalyst/Log.pm
Log:
Don't inline the Catalyst::Log constructor to avoid a warning on recent Moose.

Modified: Catalyst-Runtime/5.80/trunk/lib/Catalyst/Log.pm
===================================================================
--- Catalyst-Runtime/5.80/trunk/lib/Catalyst/Log.pm	2009-04-18 19:37:04 UTC (rev 9739)
+++ Catalyst-Runtime/5.80/trunk/lib/Catalyst/Log.pm	2009-04-18 19:39:17 UTC (rev 9740)
@@ -102,7 +102,7 @@
 }
 
 no Moose;
-__PACKAGE__->meta->make_immutable();
+__PACKAGE__->meta->make_immutable(inline_constructor => 0);
 
 1;
 




More information about the Catalyst-commits mailing list