From 00b183a8b51600d7a248a9d35b83207bd3083896 Mon Sep 17 00:00:00 2001 From: Dale Rahn Date: Thu, 19 Sep 2013 15:09:18 -0400 Subject: [PATCH] Remove unreachable statement. ok davec@ --- chain.go | 1 - 1 file changed, 1 deletion(-) diff --git a/chain.go b/chain.go index 123b9aef..03aecd21 100644 --- a/chain.go +++ b/chain.go @@ -132,7 +132,6 @@ func removeChildNode(children []*blockNode, node *blockNode) []*blockNode { copy(children[i:], children[i+1:]) children[len(children)-1] = nil return children[:len(children)-1] - i-- } } return children