the json parser needs line 549 fixed.  even when useLongsDefault is set to 
true, the code parses as a double.  The reason is on line 549 of JSONParser:

    public void longToken(long tok) {
        if (isStackHash()) {
            getStackHash().put(currentKey, new Double(tok));  <<< not new 
Double, should be new Long(tok)
            currentKey = null;
        } else {
            getStackVec().add(new Long(tok));
        }
    }



-- 
You received this message because you are subscribed to the Google Groups 
"CodenameOne Discussions" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
Visit this group at https://groups.google.com/group/codenameone-discussions.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/codenameone-discussions/8ff89e98-c7c2-4a6b-89ea-9a1b5a3b0643%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to