Break the long string into two lines
Dave Rolsky [Thu, 4 Dec 2008 21:41:48 +0000 (21:41 +0000)]
lib/Moose/Meta/Method/Constructor.pm

index 838a7e2..83347ba 100644 (file)
@@ -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;
         }