| 4 | // Visit http://OnJava8.com for more book information. |
| 5 | |
| 6 | public class StaticIDField implements HasID { |
| 7 | private static int counter = 0; |
| 8 | private int id = counter++; |
| 9 | @Override public int getID() { return id; } |
| 10 | } |
nothing calls this directly
no outgoing calls
no test coverage detected