mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-07 14:57:21 +08:00
InflaterInputStream.java: New stub class.
u * InflaterInputStream.java: New stub class. * ZipInputStream.java: New class. Partly works. * ZipConstants.java: Add two (internal) constants. * ZipEntry.java (timeFromDOS): New static (non-public) method. * ZipFile.java: Make it mostly work, except for compression. * ZipOutputStream.java: Start implementation. From-SVN: r26792
This commit is contained in:
parent
148017e025
commit
efd6b47e7c
12
libjava/java/util/zip/InflaterInputStream.java
Normal file
12
libjava/java/util/zip/InflaterInputStream.java
Normal file
@ -0,0 +1,12 @@
|
||||
package java.util.zip;
|
||||
import java.io.*;
|
||||
|
||||
/** Placefolder - very incomplete. */
|
||||
|
||||
public class InflaterInputStream extends FilterInputStream
|
||||
{
|
||||
public InflaterInputStream(InputStream in)
|
||||
{
|
||||
super(in);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user