mgholam / fastJSON

Smallest, fastest polymorphic JSON serializer
https://www.codeproject.com/Articles/159450/fastJSON-Smallest-Fastest-Polymorphic-JSON-Seriali
MIT License
479 stars 147 forks source link

Method Parseobject processing is a dead loop #72

Closed hanfeng529264 closed 6 years ago

hanfeng529264 commented 6 years ago

In the Fastjson 1.2.43 version, the method parseobject is treated as a dead loop。 The following test source:

public static <T> T parseObject(String text, Class<T> clazz) {
        return parseObject(text, clazz);
    }