()
| 84 | } |
| 85 | |
| 86 | public String getMinKey() { |
| 87 | if(head.next == tail){ |
| 88 | return ""; |
| 89 | } |
| 90 | return head.next.keys.iterator().next(); |
| 91 | } |
| 92 | private void removeNode(Node cur){ |
| 93 | Node nextNode = cur.next; |
| 94 | Node prevNode = cur.prev; |
nothing calls this directly
no outgoing calls
no test coverage detected