aboutsummaryrefslogtreecommitdiff
path: root/bucket.go
diff options
context:
space:
mode:
Diffstat (limited to 'bucket.go')
-rw-r--r--bucket.go8
1 files changed, 0 insertions, 8 deletions
diff --git a/bucket.go b/bucket.go
index 90a01c7..1ce901f 100644
--- a/bucket.go
+++ b/bucket.go
@@ -1,11 +1,5 @@
package bolt
-var (
- InvalidBucketError = &Error{"invalid bucket", nil}
-)
-
-type bucketid uint32
-
type Bucket struct {
*bucket
name string
@@ -14,8 +8,6 @@ type Bucket struct {
}
type bucket struct {
- id bucketid
- flags uint32
root pgid
}