538539540541542543544545546547548
throws DatabaseException { DBIN abin = latchDBIN(); if (abin != null) { abin.removeCursor(this); abin.releaseLatch(); } } public void dumpTree() throws DatabaseException {
573574575576577578579580581582583
throws DatabaseException { DBIN abin = latchDBIN(); if (abin != null) { abin.removeCursor(this); abin.releaseLatch(); } } /** * Clear the reference to the dup tree, if any.
665666667668669670671672673674675
710711712713714715716717718719720
/* * FindBugs whines about Redundent comparison to null below, but * for stylistic purposes we'll leave it in. */ if (duplicateBin != null) { duplicateBin.releaseLatch(); } throw DBE; } }