Am 30.06.2015 um 12:20 schrieb Andreas Lehmkühler:
Hi,
there are again a number of solved issues and I'm thinking about a new
bugfix release. How about a new one next week, maybe later if someone
wants to get some addtional things done before?
I have only one thing I'd like to test, with Tim Allison, before a
release: there's a line in PDTextStripper
if ((wordSpacing == 0) || (wordSpacing == Float.NaN))
however wordSpacing == Float.NaN is always false. So I'd like to find
out if there is any difference in using what the developer probably
intended, which is
if ((wordSpacing == 0) || (|Float.isNaN(|wordSpacing)))
(BCC to Tim)
Tilman