(int data)
| 5 | Node prev; |
| 6 | |
| 7 | public Node(int data) { |
| 8 | this.data = data; |
| 9 | this.next = null; |
| 10 | this.prev = null; |
| 11 | } |
| 12 | } |
| 13 | public static Node head; |
| 14 | public static Node tail; |
nothing calls this directly
no outgoing calls
no test coverage detected