Skip to content
This repository was archived by the owner on Apr 22, 2020. It is now read-only.

Commit 10fec64

Browse files
committed
factory seems to have changed signature
1 parent 36ee83c commit 10fec64

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

benchmark/src/main/java/org/neo4j/unsafe/impl/batchimport/cache/ChunkedHeapFactory.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@
1919
package org.neo4j.unsafe.impl.batchimport.cache;
2020

2121
public abstract class ChunkedHeapFactory {
22-
private static final NumberArrayFactory FACTORY = new ChunkedNumberArrayFactory(NumberArrayFactory.HEAP);
22+
private static final NumberArrayFactory FACTORY = new ChunkedNumberArrayFactory((l, numberArrayFactory, iterable) -> {
23+
24+
}, NumberArrayFactory.HEAP);
2325

2426
private ChunkedHeapFactory() {}
2527

0 commit comments

Comments
 (0)