mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
Remove Unnecessary Annotations
This commit is contained in:
parent
7bb3fb1481
commit
68de405be8
1 changed files with 0 additions and 16 deletions
|
|
@ -220,19 +220,3 @@ func (cs caseList) deactivate(index int) caseList {
|
||||||
cs[index], cs[last] = cs[last], cs[index]
|
cs[index], cs[last] = cs[last], cs[index]
|
||||||
return cs[:last]
|
return cs[:last]
|
||||||
}
|
}
|
||||||
|
|
||||||
// func (cs caseList) String() string {
|
|
||||||
// s := "["
|
|
||||||
// for i, cas := range cs {
|
|
||||||
// if i != 0 {
|
|
||||||
// s += ", "
|
|
||||||
// }
|
|
||||||
// switch cas.Dir {
|
|
||||||
// case reflect.SelectSend:
|
|
||||||
// s += fmt.Sprintf("%v<-", cas.Chan.Interface())
|
|
||||||
// case reflect.SelectRecv:
|
|
||||||
// s += fmt.Sprintf("<-%v", cas.Chan.Interface())
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// return s + "]"
|
|
||||||
// }
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue