Skip to content
This repository was archived by the owner on Jun 27, 2023. It is now read-only.

Commit c54d0e4

Browse files
committed
feat(EnumLinksAsync): Remove error since it's unused
1 parent 269f6d2 commit c54d0e4

File tree

4 files changed

+12
-20
lines changed

4 files changed

+12
-20
lines changed

hamt/hamt.go

+5-8
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,8 @@ import (
2929
cid "github.com/ipfs/go-cid"
3030
ipld "github.com/ipfs/go-ipld-format"
3131
dag "github.com/ipfs/go-merkledag"
32-
"github.com/spaolacci/murmur3"
33-
3432
format "github.com/ipfs/go-unixfs"
33+
"github.com/spaolacci/murmur3"
3534
)
3635

3736
const (
@@ -401,10 +400,8 @@ func (ds *Shard) getValue(ctx context.Context, hv *hashBits, key string, cb func
401400
func (ds *Shard) EnumLinks(ctx context.Context) ([]*ipld.Link, error) {
402401
var links []*ipld.Link
403402

404-
linkResults, err := ds.EnumLinksAsync(ctx)
405-
if err != nil {
406-
return nil, err
407-
}
403+
linkResults := ds.EnumLinksAsync(ctx)
404+
408405
for linkResult := range linkResults {
409406
if linkResult.Err != nil {
410407
return links, linkResult.Err
@@ -426,7 +423,7 @@ func (ds *Shard) ForEachLink(ctx context.Context, f func(*ipld.Link) error) erro
426423

427424
// EnumLinksAsync returns a channel which will receive Links in the directory
428425
// as they are enumerated, where order is not gauranteed
429-
func (ds *Shard) EnumLinksAsync(ctx context.Context) (<-chan format.LinkResult, error) {
426+
func (ds *Shard) EnumLinksAsync(ctx context.Context) <-chan format.LinkResult {
430427
linkResults := make(chan format.LinkResult)
431428
ctx, cancel := context.WithCancel(ctx)
432429
go func() {
@@ -439,7 +436,7 @@ func (ds *Shard) EnumLinksAsync(ctx context.Context) (<-chan format.LinkResult,
439436
emitResult(ctx, linkResults, format.LinkResult{Link: nil, Err: err})
440437
}
441438
}()
442-
return linkResults, nil
439+
return linkResults
443440
}
444441

445442
// makeAsyncTrieGetLinks builds a getLinks function that can be used with EnumerateChildrenAsync

hamt/hamt_test.go

+2-4
Original file line numberDiff line numberDiff line change
@@ -337,10 +337,8 @@ func TestEnumLinksAsync(t *testing.T) {
337337
t.Fatal(err)
338338
}
339339

340-
linkResults, err := nds.EnumLinksAsync(ctx)
341-
if err != nil {
342-
t.Fatal(err)
343-
}
340+
linkResults := nds.EnumLinksAsync(ctx)
341+
344342
var linksB []*ipld.Link
345343

346344
for linkResult := range linkResults {

io/directory.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ type Directory interface {
4141

4242
// EnumLinksAsync returns a channel which will receive Links in the directory
4343
// as they are enumerated, where order is not gauranteed
44-
EnumLinksAsync(context.Context) (<-chan format.LinkResult, error)
44+
EnumLinksAsync(context.Context) <-chan format.LinkResult
4545

4646
// Links returns the all the links in the directory node.
4747
Links(context.Context) ([]*ipld.Link, error)
@@ -148,7 +148,7 @@ func (d *BasicDirectory) AddChild(ctx context.Context, name string, node ipld.No
148148

149149
// EnumLinksAsync returns a channel which will receive Links in the directory
150150
// as they are enumerated, where order is not gauranteed
151-
func (d *BasicDirectory) EnumLinksAsync(ctx context.Context) (<-chan format.LinkResult, error) {
151+
func (d *BasicDirectory) EnumLinksAsync(ctx context.Context) <-chan format.LinkResult {
152152
linkResults := make(chan format.LinkResult)
153153
go func() {
154154
defer close(linkResults)
@@ -163,7 +163,7 @@ func (d *BasicDirectory) EnumLinksAsync(ctx context.Context) (<-chan format.Link
163163
}
164164
}
165165
}()
166-
return linkResults, nil
166+
return linkResults
167167
}
168168

169169
// ForEachLink implements the `Directory` interface.
@@ -253,7 +253,7 @@ func (d *HAMTDirectory) ForEachLink(ctx context.Context, f func(*ipld.Link) erro
253253

254254
// EnumLinksAsync returns a channel which will receive Links in the directory
255255
// as they are enumerated, where order is not gauranteed
256-
func (d *HAMTDirectory) EnumLinksAsync(ctx context.Context) (<-chan format.LinkResult, error) {
256+
func (d *HAMTDirectory) EnumLinksAsync(ctx context.Context) <-chan format.LinkResult {
257257
return d.shard.EnumLinksAsync(ctx)
258258
}
259259

io/directory_test.go

+1-4
Original file line numberDiff line numberDiff line change
@@ -158,10 +158,7 @@ func TestDirBuilder(t *testing.T) {
158158
t.Fatal("wrong number of links", len(links), count)
159159
}
160160

161-
linkResults, err := dir.EnumLinksAsync(ctx)
162-
if err != nil {
163-
t.Fatal(err)
164-
}
161+
linkResults := dir.EnumLinksAsync(ctx)
165162

166163
asyncNames := make(map[string]bool)
167164
var asyncLinks []*ipld.Link

0 commit comments

Comments
 (0)