Removed explict utf8 decode from paramHashRef

This commit is contained in:
Kaleb Murphy 2009-01-27 03:32:29 +00:00
parent 8214390407
commit 1c8ee0b954

View file

@ -98,7 +98,6 @@ sub paramsHashRef {
my %hash;
tie %hash, "Tie::IxHash";
foreach ($self->param) {
$_ = Encode::decode_utf8($_);
my @arr = $self->process($_);
$hash{$_} = (scalar(@arr) > 1)?\@arr:$arr[0];
}