From 1b8e2dbb66f7a57ef96607e1bf581404332e96ac Mon Sep 17 00:00:00 2001 From: Shivam Malhotra Date: Tue, 4 Jun 2024 12:14:19 -0500 Subject: [PATCH] Minor touchups --- .../deephaven/engine/table/impl/remote/ConstructSnapshot.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/engine/table/src/main/java/io/deephaven/engine/table/impl/remote/ConstructSnapshot.java b/engine/table/src/main/java/io/deephaven/engine/table/impl/remote/ConstructSnapshot.java index 7022fc4af40..f800195b66a 100644 --- a/engine/table/src/main/java/io/deephaven/engine/table/impl/remote/ConstructSnapshot.java +++ b/engine/table/src/main/java/io/deephaven/engine/table/impl/remote/ConstructSnapshot.java @@ -44,7 +44,6 @@ import java.util.concurrent.CompletableFuture; import java.util.concurrent.ExecutionException; import java.util.concurrent.atomic.AtomicReference; -import java.util.function.Consumer; import java.util.stream.Stream; import io.deephaven.chunk.attributes.Values; @@ -90,7 +89,7 @@ public NoSnapshotAllowedException(String reason) { public static final int SNAPSHOT_CHUNK_SIZE = Configuration.getInstance() .getIntegerWithDefault("ConstructSnapshot.snapshotChunkSize", 1 << 24); - private static final ArrayList> EMPTY_CHUNK_LIST = new ArrayList<>(); + private static final ArrayList> EMPTY_CHUNK_LIST = new ArrayList<>(0); public interface State {