(String className, String methodName, Object... args)
| 345 | } |
| 346 | |
| 347 | public static Object invokeStaticMethodVariadic(String className, String methodName, Object... args) { |
| 348 | return invokeStaticMethod(className, methodName, args); |
| 349 | |
| 350 | } |
| 351 | |
| 352 | public static Object invokeStaticMethod(String className, String methodName, Object[] args) { |
| 353 | Class c = RT.classForName(className); |
nothing calls this directly
no test coverage detected