File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,6 @@ import (
10
10
// ErrNotFound is used to signal when a Node could not be found. The specific
11
11
// meaning will depend on the DAGService implementation, which may be trying
12
12
// to read nodes locally but also, trying to find them remotely.
13
- //
14
- // Deprecated: use github.com/ipld/go-ipld-prime/storage#ErrNotFound instead.
15
13
type ErrNotFound = storage.ErrNotFound
16
14
17
15
// IsNotFound returns true if the error is a ErrNotFound. As it uses a
@@ -25,8 +23,6 @@ type ErrNotFound = storage.ErrNotFound
25
23
// function provides a maximally compatible matching function that should be
26
24
// able to determine whether an ErrNotFound, either new or legacy, exists within
27
25
// a wrapped error chain.
28
- //
29
- // Deprecated: use github.com/ipld/go-ipld-prime/storage#IsNotFound instead.
30
26
func IsNotFound (err error ) bool {
31
27
return storage .IsNotFound (err )
32
28
}
You can’t perform that action at this time.
0 commit comments