Subject: | combine(), string() and print() methods do not pass through to Text::CSV_XS |
Hi Adam -
I'm using Parse-CVS 1.00 and it's working great except for the
combine(), string() and print() methods. They currently look e.g. like
this:
sub combine {
shift->combine(@_);
}
which results in an infinite loop of calls to $self->combine().
I think they need to be something like this:
sub combine {
shift->{csv_xs}->combine(@_);
}
Thanks!
Larry