remove redundant check

This commit is contained in:
unlisted 2012-05-07 14:05:37 -04:00
parent a1e21f0d7c
commit a2d6caf9a0

View File

@ -17,7 +17,7 @@ handle remainder => sub {
{
if ($_ =~ /[a-z]/i)
{
++$freq{$_} if $_;
++$freq{$_};
++$count;
};
};