mirror of https://github.com/apache/poi.git
Fix Eclipse warning about generics
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1637978 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ec3a74cb05
commit
8b4a6352ca
|
@ -331,7 +331,7 @@ public class SXSSFWorkbook implements Workbook
|
|||
ZipOutputStream zos = new ZipOutputStream(out);
|
||||
try
|
||||
{
|
||||
Enumeration<ZipEntry> en = (Enumeration<ZipEntry>) zip.entries();
|
||||
Enumeration<? extends ZipEntry> en = zip.entries();
|
||||
while (en.hasMoreElements())
|
||||
{
|
||||
ZipEntry ze = en.nextElement();
|
||||
|
|
Loading…
Reference in New Issue