remove redundant check
This commit is contained in:
parent
9274a6bcaa
commit
74e460d5e1
1 changed files with 1 additions and 1 deletions
|
@ -2710,7 +2710,7 @@ struct server_context {
|
||||||
if (slot.is_processing()) {
|
if (slot.is_processing()) {
|
||||||
if (!slot_batched) {
|
if (!slot_batched) {
|
||||||
slot_batched = &slot;
|
slot_batched = &slot;
|
||||||
} else if (slot_batched && !slot_batched->can_batch_with(slot)) {
|
} else if (!slot_batched->can_batch_with(slot)) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue