From: Matt S Trout Date: Sun, 7 Nov 2010 04:40:02 +0000 (+0000) Subject: remove tab. how the fsck did a tab get into my source code? :( X-Git-Tag: 0.009001~67 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f0d79ee08ad80de134ed932cd85d1169027da47a;p=gitmo%2FMoo.git remove tab. how the fsck did a tab get into my source code? :( --- diff --git a/lib/Method/Generate/Constructor.pm b/lib/Method/Generate/Constructor.pm index a3f3bb0..0cecf2d 100644 --- a/lib/Method/Generate/Constructor.pm +++ b/lib/Method/Generate/Constructor.pm @@ -53,7 +53,7 @@ sub _check_required { my @required_init = map $spec->{$_}{init_arg}, grep $spec->{$_}{required}, - keys %$spec; + keys %$spec; return '' unless @required_init; ' if (my @missing = grep !exists $args->{$_}, qw(' .join(' ',@required_init).')) {'."\n"