Skip to content

Commit

Permalink
patch from Fuchs against deadlock,
Browse files Browse the repository at this point in the history
  • Loading branch information
orbiter committed Dec 22, 2006
1 parent 4a1dd8e commit 49ffedf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion source/de/anomic/kelondro/kelondroTree.java
Expand Up @@ -733,7 +733,9 @@ private void remove(Node node, Node parentOfNode) throws IOException {
}
}
// move node to recycling queue
deleteNode(node.handle());
synchronized (this) {
deleteNode(node.handle());
}
}

protected Node firstNode() throws IOException {
Expand Down

0 comments on commit 49ffedf

Please sign in to comment.