fix indentation in generated constructor
Matt S Trout [Sun, 7 Nov 2010 04:27:44 +0000 (04:27 +0000)]
lib/Method/Generate/Constructor.pm

index d8578b3..a3f3bb0 100644 (file)
@@ -21,9 +21,9 @@ sub generate_method {
   $body .= $self->_check_required($spec);
   $body .= '    my $new = bless({}, $class);'."\n";
   $body .= $self->_assign_new($spec);
-  $body .= '    return $new;';
+  $body .= '    return $new;'."\n";
   quote_sub
-    "${into}::${name}" => '    '.$body."\n",
+    "${into}::${name}" => $body,
     (ref($quote_opts) ? ({}, $quote_opts) : ())
   ;
 }