mirror of https://github.com/apache/poi.git
formatting
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894056 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5baa34caf2
commit
798f8c1db3
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -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;
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue