Skip to content

Commit

Permalink
Minor touchups
Browse files Browse the repository at this point in the history
  • Loading branch information
malhotrashivam committed Jun 4, 2024
1 parent f94d46c commit 1b8e2db
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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<Chunk<Values>> EMPTY_CHUNK_LIST = new ArrayList<>();
private static final ArrayList<Chunk<Values>> EMPTY_CHUNK_LIST = new ArrayList<>(0);

public interface State {

Expand Down

0 comments on commit 1b8e2db

Please sign in to comment.