aboutsummaryrefslogtreecommitdiff
path: root/format/commitgraph/read/lookup.go
diff options
context:
space:
mode:
authorGravatar Runxi Yu2026-03-29 13:27:55 +0000
committerGravatar Runxi Yu2026-03-29 13:27:55 +0000
commitabce6092bf50a1878934e2b442c6781e6aff3fca (patch)
tree3cde8b3b560c7fe4242ba1966588e497fb472142 /format/commitgraph/read/lookup.go
parentformat/commitgraph: Remove MT-ReadSafe; use MT-Safe/Unsafe (diff)
signatureNo signature
format/commitgraph: Trim redundant MT-Safe's
Diffstat (limited to 'format/commitgraph/read/lookup.go')
-rw-r--r--format/commitgraph/read/lookup.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/format/commitgraph/read/lookup.go b/format/commitgraph/read/lookup.go
index 91a505e1..5f1b08f6 100644
--- a/format/commitgraph/read/lookup.go
+++ b/format/commitgraph/read/lookup.go
@@ -6,8 +6,6 @@ import (
)
// Lookup resolves one object ID to one graph position.
-//
-// Labels: MT-Safe.
func (reader *Reader) Lookup(oid objectid.ObjectID) (Position, error) {
if oid.Algorithm() != reader.algo {
return Position{}, &NotFoundError{OID: oid}