-
Type:
Bug
-
Resolution: Fixed
-
Priority:
Normal
-
Affects Version/s: 7.0.3
-
Component/s: Databind 2
-
Security Level: Jimmy
-
None
Somehow this API is a recursive call that may cause stack overflow exception.
public class ClassUtil { public static final Object newInstance(Class<?> cls, Object[] args) throws NoSuchMethodException, InstantiationException, InvocationTargetException, IllegalAccessException { return newInstance(cls, args); } }