mirror of
https://github.com/corda/corda.git
synced 2025-06-14 13:18:18 +00:00
implement minimal, read-only versions of RandomAccessFile and ZipFile
This commit is contained in:
6
classpath/java/util/zip/ZipEntry.java
Normal file
6
classpath/java/util/zip/ZipEntry.java
Normal file
@ -0,0 +1,6 @@
|
||||
package java.util.zip;
|
||||
|
||||
public abstract class ZipEntry {
|
||||
public abstract String getName();
|
||||
public abstract int getCompressedSize();
|
||||
}
|
Reference in New Issue
Block a user