summaryrefslogtreecommitdiff
path: root/pkg/btrfs/internal/uuid.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/btrfs/internal/uuid.go')
-rw-r--r--pkg/btrfs/internal/uuid.go5
1 files changed, 0 insertions, 5 deletions
diff --git a/pkg/btrfs/internal/uuid.go b/pkg/btrfs/internal/uuid.go
index ff274d9..6169638 100644
--- a/pkg/btrfs/internal/uuid.go
+++ b/pkg/btrfs/internal/uuid.go
@@ -1,7 +1,6 @@
package internal
import (
- "bytes"
"encoding/hex"
"strings"
)
@@ -18,7 +17,3 @@ func (uuid UUID) String() string {
str[20:32],
}, "-")
}
-
-func (a UUID) Equal(b UUID) bool {
- return bytes.Equal(a[:], b[:])
-}