Skip to content
Snippets Groups Projects
Commit 9e1647bf authored by Powers, Peter M.'s avatar Powers, Peter M.
Browse files

flushLimit (aka batchSize) now implemented in hazardCalc

parent 3e901237
No related branches found
No related tags found
1 merge request!101Significant config and output updates
......@@ -445,8 +445,9 @@ public final class CalcConfig {
int flushLimit) {
this.directory = directory;
curveTypes.add(CurveType.TOTAL);
this.curveTypes = Sets.immutableEnumSet(curveTypes);
this.curveTypes = Sets.immutableEnumSet(
CurveType.TOTAL,
curveTypes.toArray(new CurveType[curveTypes.size()]));
this.flushLimit = flushLimit;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment