Bugzilla #51716 - Removed incorrect assert in SXSSFSheet#getSXSSFSheet

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1178769 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Yegor Kozlov 2011-10-04 12:36:21 +00:00
parent 669c8f4362
commit abba248c50
2 changed files with 1 additions and 1 deletions

View File

@ -34,6 +34,7 @@
<changes>
<release version="3.8-beta5" date="2011-??-??">
<action dev="poi-developers" type="fix">51716 - Removed incorrect assert in SXSSFSheet#getSXSSFSheet</action>
<action dev="poi-developers" type="fix">51834 - Opening and Writing .doc file results in corrupt document</action>
<action dev="poi-developers" type="fix">51902 - Picture.fillRawImageContent - ArrayIndexOutOfBoundsException (duplicate)</action>
<action dev="poi-developers" type="fix">51890 - ArrayIndexOutOfBounds ExceptionPicture.fillRawImageContent</action>

View File

@ -161,7 +161,6 @@ public class SXSSFWorkbook implements Workbook
SXSSFSheet getSXSSFSheet(XSSFSheet sheet)
{
SXSSFSheet result=_xFromSxHash.get(sheet);
assert result!=null;
return result;
}