mirror of
https://github.com/corda/corda.git
synced 2025-01-06 05:04:20 +00:00
fixing problems!
This commit is contained in:
parent
08d441a905
commit
8eec1a0339
@ -12,4 +12,8 @@ package java.util.jar;
|
||||
|
||||
import java.util.zip.ZipEntry;
|
||||
|
||||
public abstract class JarEntry extends ZipEntry { }
|
||||
public abstract class JarEntry extends ZipEntry {
|
||||
public JarEntry(){
|
||||
super(null);
|
||||
}
|
||||
}
|
||||
|
@ -117,7 +117,10 @@ public class ZipEntry {
|
||||
|
||||
public long getTime(){
|
||||
return millisTime;
|
||||
}
|
||||
|
||||
public int getJavaTime(){
|
||||
return modTimeDate;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -285,6 +285,7 @@ public class ZipFile {
|
||||
public final int pointer;
|
||||
|
||||
public MyZipEntry(Window window, int pointer) {
|
||||
super(null);
|
||||
this.window = window;
|
||||
this.pointer = pointer;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user