Subject: | Redundant conditional in Data/Walk.pm |
The source code of Data::Walk contains these two lines (lines 112 and 113):
if ($data_type eq 'HASH' || $data_type eq 'ARRAY') {
if (('ARRAY' eq $data_type || 'HASH' eq $data_type)) {
It seems to me that the 2nd line is redundant and may be removed.
Regards,
Slaven