Skip to content

Commit b5a7d9d

Browse files
Killed dead code.
1 parent 574ae58 commit b5a7d9d

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

btree/palm/tree.go

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,6 @@ import (
2828

2929
type operation int
3030

31-
type disposable interface {
32-
dispose(*ptree)
33-
}
34-
3531
const (
3632
get operation = iota
3733
add
@@ -400,11 +396,6 @@ func (ptree *ptree) cleanMap(op map[*node][]*keyBundle) {
400396
}
401397
}
402398

403-
func (ptree *ptree) cleanMaps(adds, deletes map[*node][]*keyBundle) {
404-
ptree.cleanMap(adds)
405-
ptree.cleanMap(deletes)
406-
}
407-
408399
func (ptree *ptree) recursiveMutate(adds, deletes map[*node][]*keyBundle, setRoot, inParallel bool) {
409400
if len(adds) == 0 && len(deletes) == 0 {
410401
return

0 commit comments

Comments
 (0)