Remove Unnecessary Annotations

This commit is contained in:
web3santa 2024-04-03 23:59:32 +09:00
parent 7bb3fb1481
commit 68de405be8

View file

@ -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 + "]"
// }