ZipInputStream.java (createZipEntry): Implemented.

* java/util/zip/ZipInputStream.java (createZipEntry):
	Implemented.

From-SVN: r35810
This commit is contained in:
Tom Tromey 2000-08-19 19:54:36 +00:00 committed by Tom Tromey
parent a729a4e9ab
commit ea70900954
3 changed files with 10 additions and 5 deletions

View File

@ -1,3 +1,8 @@
2000-08-19 Tom Tromey <tromey@cygnus.com>
* java/util/zip/ZipInputStream.java (createZipEntry):
Implemented.
Sat Aug 19 11:00:53 2000 Anthony Green <green@redhat.com>
* java/util/jar/Attributes.java, java/util/jar/JarEntry.java,

View File

@ -247,10 +247,11 @@ public class ByteArrayOutputStream extends OutputStream
static
{
initial_buffer_size
int r
= Integer.getInteger ("gnu.java.io.ByteArrayOutputStream.initialBufferSize",
DEFAULT_INITIAL_BUFFER_SIZE).intValue ();
if (initial_buffer_size <= 0)
initial_buffer_size = DEFAULT_INITIAL_BUFFER_SIZE;
if (r <= 0)
r = DEFAULT_INITIAL_BUFFER_SIZE;
initial_buffer_size = r;
}
}

View File

@ -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