diff options
author | Tom Tromey <tromey@redhat.com> | 2005-10-06 00:40:52 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2005-10-06 00:40:52 +0000 |
commit | ddba10a29505f7b1c203713c9b3c3baf11015f20 (patch) | |
tree | d822103eca45c8a543a59a9bb912f60211b63226 /java | |
parent | 59ba67028a7c2e9f108c6f4a2457d58333995caf (diff) | |
download | classpath-ddba10a29505f7b1c203713c9b3c3baf11015f20.tar.gz |
* java/util/zip/ZipFile.java (entries): Fixed return type.
Diffstat (limited to 'java')
-rw-r--r-- | java/util/zip/ZipFile.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/util/zip/ZipFile.java b/java/util/zip/ZipFile.java index e7b4b65e1..1bc66e267 100644 --- a/java/util/zip/ZipFile.java +++ b/java/util/zip/ZipFile.java @@ -368,7 +368,7 @@ public class ZipFile implements ZipConstants * * @exception IllegalStateException when the ZipFile has already been closed */ - public Enumeration<ZipEntry> entries() + public Enumeration<? extends ZipEntry> entries() { checkClosed(); |