diff options
author | mark <mark@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-11-03 20:27:31 +0000 |
---|---|---|
committer | mark <mark@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-11-03 20:27:31 +0000 |
commit | 5f69d8ab05ddfa87426e7eca10f68bbb7d907641 (patch) | |
tree | 30c789f77765f6a4f5d115a1720bdb304829cfd7 /libjava/java/util/zip/ZipInputStream.java | |
parent | 0a1cca4fed755ff07b7396930d669a18a00cbf67 (diff) | |
download | ppe42-gcc-5f69d8ab05ddfa87426e7eca10f68bbb7d907641.tar.gz ppe42-gcc-5f69d8ab05ddfa87426e7eca10f68bbb7d907641.zip |
GNU Classpath merge.
2002-10-31 Stephen Crawley <crawley@dstc.edu.au>
* java/lang/Double.java (valueOf): Return new Double(parseDouble(s)).
2002-10-31 Wu Gansha <gansha.wu@intel.com>:
* java/util/ArrayList.java (readObject, writeObject): Only read/write
size items.
2002-10-31 Wu Gansha <gansha.wu@intel.com>:
* java/io/DataInputStream.java (convertFromUTF): Give StringBuffer an
initial estimated size to avoid enlarge buffer frequently.
2002-10-31 Wu Gansha <gansha.wu@intel.com>:
* java/lang/reflect/Proxy.java (ProxyType): Set loader to System
ClassLoader when null.
(ProxyType.hashCode): Loader null check no longer needed.
(ProxyType.sameTypes): New method.
(ProxyType.equals): Use new method.
2002-10-31 Mark Wielaard <mark@klomp.org>
* java/net/URLDecoder.java (decode): Initialize Stringbuffer size to
length of String.
* java/net/URLEncoder.java (encode): Likewise.
2002-10-31 Mark Wielaard <mark@klomp.org>
* java/util/zip/ZipInputStream.java (getNextEntry): Throw IOException
when stream is closed.
(closeEntry): Likewise.
(read): Likewise.
* java/util/zip/ZipOutputStream.java (putNextEntry): Throw
ZipException when no entry active.
(closeEntry): Likewise.
(write): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@58772 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java/util/zip/ZipInputStream.java')
-rw-r--r-- | libjava/java/util/zip/ZipInputStream.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libjava/java/util/zip/ZipInputStream.java b/libjava/java/util/zip/ZipInputStream.java index 710ca74c201..c9a6c0159e7 100644 --- a/libjava/java/util/zip/ZipInputStream.java +++ b/libjava/java/util/zip/ZipInputStream.java @@ -139,7 +139,7 @@ public class ZipInputStream extends InflaterInputStream implements ZipConstants public ZipEntry getNextEntry() throws IOException { if (crc == null) - throw new IllegalStateException("Closed."); + throw new IOException("Stream closed."); if (entry != null) closeEntry(); @@ -216,7 +216,7 @@ public class ZipInputStream extends InflaterInputStream implements ZipConstants public void closeEntry() throws IOException { if (crc == null) - throw new IllegalStateException("Closed."); + throw new IOException("Stream closed."); if (entry == null) return; @@ -287,7 +287,7 @@ public class ZipInputStream extends InflaterInputStream implements ZipConstants public int read(byte[] b, int off, int len) throws IOException { if (crc == null) - throw new IllegalStateException("Closed."); + throw new IOException("Stream closed."); if (entry == null) return -1; boolean finished = false; |