| 3 | // We make no guarantees that this code is fit for any purpose. |
| 4 | // Visit http://OnJava8.com for more book information. |
| 5 | public class Wrapping { |
| 6 | private int i; |
| 7 | public Wrapping(int x) { i = x; } |
| 8 | public int value() { return i; } |
| 9 | } |
nothing calls this directly
no outgoing calls
no test coverage detected