| 4 | // Visit http://OnJava8.com for more book information. |
| 5 | |
| 6 | class ClassParameter<T> { |
| 7 | public T[] f(T[] arg) { return arg; } |
| 8 | } |
| 9 | |
| 10 | class MethodParameter { |
| 11 | public static <T> T[] f(T[] arg) { return arg; } |
nothing calls this directly
no outgoing calls
no test coverage detected