| 1 | public class OverwrittenParameter { |
| 2 | |
| 3 | public void f(int i, String x, String y, String z) { |
| 4 | y = Integer.toString(i); |
| 5 | } |
| 6 | |
| 7 | public void g(long i, String x, String y, String z) { |
| 8 | y = Long.toString(i); |
| 9 | } |
| 10 | |
| 11 | } |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…