From: Dave Rolsky Date: Thu, 4 Dec 2008 21:41:48 +0000 (+0000) Subject: Break the long string into two lines X-Git-Tag: 0.62_02~17 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=e94a703f591f40cd63157848698fccb0554b4f99;p=gitmo%2FMoose.git Break the long string into two lines --- diff --git a/lib/Moose/Meta/Method/Constructor.pm b/lib/Moose/Meta/Method/Constructor.pm index 838a7e2..83347ba 100644 --- a/lib/Moose/Meta/Method/Constructor.pm +++ b/lib/Moose/Meta/Method/Constructor.pm @@ -57,7 +57,8 @@ sub can_be_inlined { if ( $constructor->body != $expected_class->can('new') ) { my $class = $metaclass->name; - warn "Not inlining a constructor for $class since it is not inheriting the default $expected_class constructor\n"; + warn "Not inlining a constructor for $class since it is not" + . " inheriting the default $expected_class constructor\n"; return 0; }