mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-01-29 01:24:26 +08:00
13 lines
212 B
Java
13 lines
212 B
Java
|
package java.util.zip;
|
||
|
import java.io.*;
|
||
|
|
||
|
/** Placefolder - very incomplete. */
|
||
|
|
||
|
public class InflaterInputStream extends FilterInputStream
|
||
|
{
|
||
|
public InflaterInputStream(InputStream in)
|
||
|
{
|
||
|
super(in);
|
||
|
}
|
||
|
}
|