Subject: | use Encode::compat is commented out |
use Encode::compat is commented out
in Plucene::Store::InputStream
and it is missing in
Plucene::Store::OutputStream;
however, since OutPutstream does
use base 'Plucene::Store::InputStream'; # And why not, indeed
all you have to do is
use base 'Plucene::Store::InputStream'; # And why not, indeed
before you
use Encode qw(encode);
so you don't have to add
use Encode::compat;