diff options
author | Tom Tromey <tromey@cygnus.com> | 2000-08-19 19:54:36 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2000-08-19 19:54:36 +0000 |
commit | ea70900954477a4eca7925bd9ed13048973ac9f8 (patch) | |
tree | 61385d572e25abc6269c04d4671da19bd1fe5c2d /libjava/java/util | |
parent | a729a4e9aba7afb312ee0f15a70979ae75d1a9fe (diff) | |
download | gcc-ea70900954477a4eca7925bd9ed13048973ac9f8.zip gcc-ea70900954477a4eca7925bd9ed13048973ac9f8.tar.gz gcc-ea70900954477a4eca7925bd9ed13048973ac9f8.tar.bz2 |
ZipInputStream.java (createZipEntry): Implemented.
* java/util/zip/ZipInputStream.java (createZipEntry):
Implemented.
From-SVN: r35810
Diffstat (limited to 'libjava/java/util')
-rw-r--r-- | libjava/java/util/zip/ZipInputStream.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libjava/java/util/zip/ZipInputStream.java b/libjava/java/util/zip/ZipInputStream.java index 3532096..a147b22 100644 --- a/libjava/java/util/zip/ZipInputStream.java +++ b/libjava/java/util/zip/ZipInputStream.java @@ -125,8 +125,7 @@ public class ZipInputStream extends InflaterInputStream implements ZipConstants protected ZipEntry createZipEntry (String name) { - // FIXME - must figure out what this is supposed to do. - return null; + return new ZipEntry (name); } public int read (byte[] b, int off, int len) throws IOException |