remove redundant check

This commit is contained in:
Xuan Son Nguyen 2025-01-02 13:54:49 +01:00
parent 9274a6bcaa
commit 74e460d5e1

View file

@ -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;
} }
} }