/[classpath]/classpath/java/util/zip/InflaterInputStream.java
ViewVC logotype

Diff of /classpath/java/util/zip/InflaterInputStream.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.7 by mkoch, Thu Jun 12 18:15:46 2003 UTC revision 1.8 by mark, Fri Jul 18 12:26:38 2003 UTC
# Line 114  public class InflaterInputStream extends Line 114  public class InflaterInputStream extends
114      if (size <= 0)      if (size <= 0)
115        throw new IllegalArgumentException("size <= 0");        throw new IllegalArgumentException("size <= 0");
116      buf = new byte[size]; //Create the buffer      buf = new byte[size]; //Create the buffer
117    
118        if (in == null)
119          throw new NullPointerException("InputStream null");
120        if (inf == null)
121          throw new NullPointerException("Inflater null");
122    }    }
123    
124    /**    /**

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26