https://issues.apache.org/jira/browse/AMQ-4094 - revert inadvertent mod/regression to BTreeNode, multiple iterations of the test verify it is unnecessary and seems to be the root cause of some instability

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1398770 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary Tully 2012-10-16 12:54:09 +00:00
parent 76153ff245
commit 47ee52e5d3
1 changed files with 3 additions and 2 deletions

View File

@ -332,10 +332,11 @@ public final class BTreeNode<Key,Value> {
keys = child.keys; keys = child.keys;
children = child.children; children = child.children;
values = child.values; values = child.values;
}
// free up the page.. // free up the page..
tx.free(child.getPage()); tx.free(child.getPage());
} }
}
index.storeNode(tx, this, true); index.storeNode(tx, this, true);
} }