-
Bug
-
Resolution: Fixed
-
Normal
-
7.0.3
-
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); } }