Gregor Kofler wrote:
> Hi,
>
> i think there is a bug in CMapParser.java see at the following Code:
> 381 while( nextByte != -1 && nextByte != 0x0D && nextByte != 0x0D )
> Should be changed to:
> 381 while( nextByte != -1 && nextByte != 0x0D && nextByte != 0x0A )
Thanks, the c
Hi,
i think there is a bug in CMapParser.java see at the following Code:
private void readUntilEndOfLine( InputStream is, StringBuffer buf ) throws
IOException
379 {
380 int nextByte = is.read();
381 while( nextByte != -1 && nextByte != 0x0D && nextByte != 0x0D )
382