1: // @author Frank M. Carrano, Timothy M. Henry 2: // @version 5.0 3: private NodePair findNode(T entry) 4: { 5: NodePair result = new NodePair(); 6: boolean found = false; 8: // . . . 10: if (found) 11: result = new NodePair(currentNode, parentNode); 12: // Located entry is currentNode.getData() 14: return result; 15: } // end findNode