aboutsummaryrefslogtreecommitdiff
path: root/object/id/algorithm_details.go
diff options
context:
space:
mode:
Diffstat (limited to 'object/id/algorithm_details.go')
-rw-r--r--object/id/algorithm_details.go17
1 files changed, 0 insertions, 17 deletions
diff --git a/object/id/algorithm_details.go b/object/id/algorithm_details.go
deleted file mode 100644
index 15e96292..00000000
--- a/object/id/algorithm_details.go
+++ /dev/null
@@ -1,17 +0,0 @@
-package objectid
-
-import "hash"
-
-type algorithmDetails struct {
- name string
- size int
- packHashID uint32
- signatureHeaderName string
- sum func([]byte) ObjectID
- new func() hash.Hash
- emptyTree ObjectID
-}
-
-func (algo Algorithm) info() algorithmDetails {
- return algorithmTable[algo]
-}