Subject: | Useless warnings |
Hello, I used your module, and having a particular issue, I found out
some little details which were provoking warnings:
In OCR2/Page.pm
at line 100 I replaced:
$txt .= $self->_text_from_images;
by
$txt .= $self->_text_from_images if ($self->_text_from_images);
In Burst.pm
At line 311 I replaced:
defined %dat or warn("had nothing in '$doc_dat'?") and return;
by
warn("had nothing in '$doc_dat'?"), return unless (%dat);