Skip to content

Commit fc2bfaa

Browse files
Copy across valueCache in DataLoaderOptions copy constructor
This looks like an accidental omission, so we include this along with all the other variables inside this class.
1 parent d42e37e commit fc2bfaa

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/main/java/org/dataloader/DataLoaderOptions.java

+1
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ public DataLoaderOptions(DataLoaderOptions other) {
7272
this.cachingExceptionsEnabled = other.cachingExceptionsEnabled;
7373
this.cacheKeyFunction = other.cacheKeyFunction;
7474
this.cacheMap = other.cacheMap;
75+
this.valueCache = other.valueCache;
7576
this.maxBatchSize = other.maxBatchSize;
7677
this.statisticsCollector = other.statisticsCollector;
7778
this.environmentProvider = other.environmentProvider;

0 commit comments

Comments
 (0)