formatting

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894056 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2021-10-09 08:19:47 +00:00
parent 5baa34caf2
commit 798f8c1db3
2 changed files with 3 additions and 6 deletions

View File

@ -202,7 +202,7 @@ public class SXSSFWorkbook implements Workbook {
* @param rowAccessWindowSize the number of rows that are kept in memory until flushed out, see above.
*/
public SXSSFWorkbook(XSSFWorkbook workbook, int rowAccessWindowSize){
this(workbook,rowAccessWindowSize, false);
this(workbook, rowAccessWindowSize, false);
}
/**
@ -227,7 +227,7 @@ public class SXSSFWorkbook implements Workbook {
* @param compressTmpFiles whether to use gzip compression for temporary files
*/
public SXSSFWorkbook(XSSFWorkbook workbook, int rowAccessWindowSize, boolean compressTmpFiles) {
this(workbook,rowAccessWindowSize, compressTmpFiles, false);
this(workbook, rowAccessWindowSize, compressTmpFiles, false);
}
/**

View File

@ -170,13 +170,10 @@ public class XSSFWorkbook extends POIXMLDocument implements Workbook, Date1904Su
/**
* The locator of user-defined functions.
* By default includes functions from the Excel Analysis Toolpack
* By default, includes functions from the Excel Analysis Toolpack
*/
private final IndexedUDFFinder _udfFinder = new IndexedUDFFinder(AggregatingUDFFinder.DEFAULT);
/**
* TODO
*/
private CalculationChain calcChain;
/**