(String[] args)
| 3 | public class ArgsRefine { |
| 4 | |
| 5 | public static void main(String[] args) throws Exception { |
| 6 | invokePrint(new Class[]{Object.class, Object.class}); |
| 7 | } |
| 8 | |
| 9 | static void invokePrint(Class<?>[] paramTypes) throws Exception { |
| 10 | Class bClass = Class.forName("B"); |
nothing calls this directly
no test coverage detected