이상한 케스팅 제거
This commit is contained in:
parent
b15525f489
commit
2ca5d87b66
|
@ -24,7 +24,7 @@ func manageQueue(send <-chan interface{}, receive chan<- interface{}) {
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
select {
|
select {
|
||||||
case receive <- front.Value.(interface{}):
|
case receive <- front.Value:
|
||||||
queue.Remove(front)
|
queue.Remove(front)
|
||||||
case value, ok := <-send:
|
case value, ok := <-send:
|
||||||
if ok {
|
if ok {
|
||||||
|
|
Reference in New Issue