You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using json-simple to read JSON stanzas directly from a Reader which in turn
comes from a TCP-Socket. While implementing this, I stumbled over a behavior in
JSONParser. Parse.parse does not return if the stanza is complete, but wait for
a EOF. I extended public Object parse(Reader in, ContainerFactory
containerFactory) throws IOException, ParseException by adding
if(status==S_IN_FINISHED_VALUE) {
System.out.println("fertig?");
return valueStack.removeFirst();
}
on line 259 (just before the closing while)
I'm using version 1.1, because I didn't find the sources for 1.1.1.
Original issue reported on code.google.com by [email protected] on 28 Feb 2012 at 8:14
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 28 Feb 2012 at 8:14The text was updated successfully, but these errors were encountered: