mirror of
https://github.com/apache/poi.git
synced 2026-02-27 20:40:08 +08:00
fix compile issues
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1907309 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
040181c42f
commit
7c372bd18c
@ -64,7 +64,7 @@ public class SXSSFSheet implements Sheet, OoxmlSheetExtensions {
|
||||
try {
|
||||
_autoSizeColumnTracker = new AutoSizeColumnTracker(this);
|
||||
} catch (Throwable t) {
|
||||
LOG.atWarn().log("Failed to create AutoSizeColumnTracker, possibly due to fonts not being installed in your OS", e);
|
||||
LOG.atWarn().log("Failed to create AutoSizeColumnTracker, possibly due to fonts not being installed in your OS", t);
|
||||
}
|
||||
}
|
||||
|
||||
@ -96,8 +96,8 @@ public class SXSSFSheet implements Sheet, OoxmlSheetExtensions {
|
||||
setRandomAccessWindowSize(_workbook.getRandomAccessWindowSize());
|
||||
try {
|
||||
_autoSizeColumnTracker = new AutoSizeColumnTracker(this);
|
||||
} catch (Throwable e) {
|
||||
LOG.atWarn().log("Failed to create AutoSizeColumnTracker, possibly due to fonts not being installed in your OS", e);
|
||||
} catch (Throwable t) {
|
||||
LOG.atWarn().log("Failed to create AutoSizeColumnTracker, possibly due to fonts not being installed in your OS", t);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user