Merge branch 'RM-226-bp' into 'release/4.73.x'
RM-226: chunk empty string correctly See merge request redactmanager/redaction-report-service!116
This commit is contained in:
commit
555ac5bf4c
@ -19,6 +19,9 @@ public class CellTextChunkingService {
|
||||
}
|
||||
|
||||
int length = value.length();
|
||||
if (length < MAX_CELL_TEXT_LENGTH) {
|
||||
return List.of(value);
|
||||
}
|
||||
int startIndex = 0;
|
||||
|
||||
while (startIndex < length) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user