From 6c73e9f7f90083ad3c0821607707d784ca2ef8ca Mon Sep 17 00:00:00 2001 From: Michael Koch Date: Wed, 15 Oct 2003 14:02:37 +0000 Subject: 2003-10-15 Michael Koch * java/util/zip/InflaterInputStream.java (InflaterInputStream): Renamed infl to inf and bufsize to size, added description to exception, check for inf == null and size < 0. From-SVN: r72519 --- libjava/java/util/zip/InflaterInputStream.java | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'libjava/java/util/zip') diff --git a/libjava/java/util/zip/InflaterInputStream.java b/libjava/java/util/zip/InflaterInputStream.java index 8ee88e5..597ed6b 100644 --- a/libjava/java/util/zip/InflaterInputStream.java +++ b/libjava/java/util/zip/InflaterInputStream.java @@ -70,15 +70,21 @@ public class InflaterInputStream extends FilterInputStream this (in, infl, 512); } - public InflaterInputStream (InputStream in, Inflater infl, int bufsize) + public InflaterInputStream (InputStream in, Inflater inf, int size) { super (in); if (in == null) - throw new NullPointerException(); + throw new NullPointerException ("in may not be null"); + + if (inf == null) + throw new NullPointerException ("inf may not be null"); + + if (size < 0) + throw new IllegalArgumentException ("size may not be negative"); - this.inf = infl; - this.buf = new byte[bufsize]; + this.inf = inf; + this.buf = new byte [size]; } public int read () throws IOException -- cgit v1.1