Error Compiling ITW on Windows/Eclipse because of Byte Order Mark

jtesdall jtesdall at mapcon.com
Mon Dec 10 17:47:49 UTC 2018


Compiling ITW on Eclipse for Windows gives an error on proximate line 632 of
nanoxml\XMLElement.java because of a bad character string checking for a
byte order mark. I have changed this to an escape sequence to be able to
compile. This also caused problems in debugging if I just excluded it from
compilation, it needed fixed to debug.

Before:
if (ch == '') {

After:
if (ch == '\uFEFF') {




--
Sent from: http://openjdk.5641.n7.nabble.com/OpenJDK-Distribution-specific-Packaging-f25548.html


More information about the distro-pkg-dev mailing list