(String methodName, Class contextClass, Object[] args)
| 123 | } |
| 124 | |
| 125 | private static String noMethodReport(String methodName, Class contextClass, Object[] args){ |
| 126 | return "No matching method " + methodName + " found taking " + args.length + " args" |
| 127 | + (contextClass != null ? " for " + contextClass : ""); |
| 128 | } |
| 129 | |
| 130 | private static Method matchMethod(List methods, Object[] args) { |
| 131 | Method foundm = null; |
no outgoing calls
no test coverage detected