aboutsummaryrefslogtreecommitdiff
path: root/cursor.go
diff options
context:
space:
mode:
authorBen Johnson <benbjohnson@yahoo.com>2014-02-05 21:50:15 -0700
committerBen Johnson <benbjohnson@yahoo.com>2014-02-05 21:50:15 -0700
commit4820312de29f446152fce216c17a696576e89d78 (patch)
tree31e748c7f977071af779aaa42a80ff728b495da6 /cursor.go
parentAdd pre-alpha badge. (diff)
parentFix quick tests. (diff)
downloaddedo-4820312de29f446152fce216c17a696576e89d78.tar.gz
dedo-4820312de29f446152fce216c17a696576e89d78.tar.xz
Merge pull request #7 from benbjohnson/delete
RWTransaction.Delete()
Diffstat (limited to 'cursor.go')
-rw-r--r--cursor.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/cursor.go b/cursor.go
index d56119b..3df325a 100644
--- a/cursor.go
+++ b/cursor.go
@@ -41,7 +41,6 @@ func (c *Cursor) Get(key []byte) []byte {
}
// If our target node isn't the same key as what's passed in then return nil.
- // c.page().hexdump(512)
if !bytes.Equal(key, c.node().key()) {
return nil
}