[jOOQ/jOOQ#14840] Thanks, ChatGPT!

This commit is contained in:
Lukas Eder 2023-05-05 10:05:40 +02:00
parent 72ab4f1c1c
commit 357397f372

View File

@ -2332,7 +2332,7 @@ final class Tools {
while (prev < l) {
result.add(list.subList(prev, Math.min(next, l)));
prev = next;
next = next += size;
next += size;
}
return result;