aboutsummaryrefslogtreecommitdiffstats
path: root/swarm/pot/pot.go
diff options
context:
space:
mode:
authorAnton Evangelatov <anton.evangelatov@gmail.com>2018-12-24 00:31:32 +0800
committerGitHub <noreply@github.com>2018-12-24 00:31:32 +0800
commit9e9fc87e70accf2b81be8772ab2ab0c914e95666 (patch)
tree410ccdefb083b08796a14ac03653a5319e9895d7 /swarm/pot/pot.go
parent335760bf0674ee553f3ca65afd6f29b6557d1b55 (diff)
downloaddexon-9e9fc87e70accf2b81be8772ab2ab0c914e95666.tar
dexon-9e9fc87e70accf2b81be8772ab2ab0c914e95666.tar.gz
dexon-9e9fc87e70accf2b81be8772ab2ab0c914e95666.tar.bz2
dexon-9e9fc87e70accf2b81be8772ab2ab0c914e95666.tar.lz
dexon-9e9fc87e70accf2b81be8772ab2ab0c914e95666.tar.xz
dexon-9e9fc87e70accf2b81be8772ab2ab0c914e95666.tar.zst
dexon-9e9fc87e70accf2b81be8772ab2ab0c914e95666.zip
swarm: remove unused/dead code (#18351)
Diffstat (limited to 'swarm/pot/pot.go')
-rw-r--r--swarm/pot/pot.go6
1 files changed, 1 insertions, 5 deletions
diff --git a/swarm/pot/pot.go b/swarm/pot/pot.go
index dfda84804..a71219779 100644
--- a/swarm/pot/pot.go
+++ b/swarm/pot/pot.go
@@ -477,7 +477,7 @@ func (t *Pot) each(f func(Val, int) bool) bool {
return f(t.pin, t.po)
}
-// EachFrom called with (f, start) is a synchronous iterator over the elements of a Pot
+// eachFrom called with (f, start) is a synchronous iterator over the elements of a Pot
// within the inclusive range starting from proximity order start
// the function argument is passed the value and the proximity order wrt the root pin
// it does NOT include the pinned item of the root
@@ -485,10 +485,6 @@ func (t *Pot) each(f func(Val, int) bool) bool {
// proximity > pinnedness
// the iteration ends if the function return false or there are no more elements
// end of a po range can be implemented since po is passed to the function
-func (t *Pot) EachFrom(f func(Val, int) bool, po int) bool {
- return t.eachFrom(f, po)
-}
-
func (t *Pot) eachFrom(f func(Val, int) bool, po int) bool {
var next bool
_, lim := t.getPos(po)