This is an automated email from the ASF dual-hosted git repository.

yao pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-gluten.git


The following commit(s) were added to refs/heads/main by this push:
     new 9c784b3ff1 Use ArrayList instead of LinkedList in Spillers (#11619)
9c784b3ff1 is described below

commit 9c784b3ff1bf427c37a35643f403a1cd8e419461
Author: Ankita Victor <[email protected]>
AuthorDate: Tue Feb 24 20:46:12 2026 +0530

    Use ArrayList instead of LinkedList in Spillers (#11619)
---
 .../src/main/java/org/apache/gluten/memory/memtarget/Spillers.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/gluten-core/src/main/java/org/apache/gluten/memory/memtarget/Spillers.java 
b/gluten-core/src/main/java/org/apache/gluten/memory/memtarget/Spillers.java
index 1c554d6725..220a9de32b 100644
--- a/gluten-core/src/main/java/org/apache/gluten/memory/memtarget/Spillers.java
+++ b/gluten-core/src/main/java/org/apache/gluten/memory/memtarget/Spillers.java
@@ -62,7 +62,7 @@ public final class Spillers {
   }
 
   public static class AppendableSpillerList implements Spiller {
-    private final List<Spiller> spillers = new LinkedList<>();
+    private final List<Spiller> spillers = new ArrayList<>();
 
     private AppendableSpillerList() {}
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to