mirror of https://github.com/apache/lucene.git
Don't preserve auxiliary buffer contents in LSBRadixSorter if it grows (#12947)
This commit is contained in:
parent
487d24ae69
commit
8f50976c26
|
@ -273,6 +273,8 @@ Optimizations
|
|||
|
||||
* GITHUB#13431: Replace TreeMap and use compiled Patterns in Japanese UserDictionary. (Bruno Roustant)
|
||||
|
||||
* GITHUB#12941: Don't preserve auxiliary buffer contents in LSBRadixSorter if it grows. (Stefan Vodita)
|
||||
|
||||
Bug Fixes
|
||||
---------------------
|
||||
(No changes)
|
||||
|
|
|
@ -92,7 +92,7 @@ public final class LSBRadixSorter {
|
|||
return;
|
||||
}
|
||||
|
||||
buffer = ArrayUtil.grow(buffer, len);
|
||||
buffer = ArrayUtil.growNoCopy(buffer, len);
|
||||
|
||||
int[] arr = array;
|
||||
|
||||
|
|
Loading…
Reference in New Issue