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:
Dominik Stadler 2014-11-10 20:36:54 +00:00
parent ec3a74cb05
commit 8b4a6352ca
1 changed files with 1 additions and 1 deletions

View File

@ -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();