(Item i, IntNode n)
| 8 | public IntNode next; |
| 9 | |
| 10 | public IntNode(Item i, IntNode n) { |
| 11 | item = i; |
| 12 | next = n; |
| 13 | } |
| 14 | } |
| 15 | |
| 16 | /* The first item (if it exists) is at sentinel.next. */ |
nothing calls this directly
no outgoing calls
no test coverage detected