infra
/
goutils
Archived
1
0
Fork 0

이상한 케스팅 제거

This commit is contained in:
Sangbum Kim 2018-06-09 12:58:58 +09:00
parent b15525f489
commit 2ca5d87b66
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ func manageQueue(send <-chan interface{}, receive chan<- interface{}) {
}
} else {
select {
case receive <- front.Value.(interface{}):
case receive <- front.Value:
queue.Remove(front)
case value, ok := <-send:
if ok {