1999-05-10 09:23:41 +00:00
|
|
|
/* Copyright (C) 1999 Cygnus Solutions
|
|
|
|
|
|
|
|
This file is part of libgcj.
|
|
|
|
|
|
|
|
This software is copyrighted work licensed under the terms of the
|
|
|
|
Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
1999-05-05 17:15:43 -07:00
|
|
|
package java.util.zip;
|
|
|
|
import java.io.*;
|
|
|
|
|
|
|
|
/** Placefolder - very incomplete. */
|
|
|
|
|
|
|
|
public class InflaterInputStream extends FilterInputStream
|
|
|
|
{
|
|
|
|
public InflaterInputStream(InputStream in)
|
|
|
|
{
|
|
|
|
super(in);
|
|
|
|
}
|
|
|
|
}
|