mirror of
https://github.com/corda/corda.git
synced 2025-06-14 13:18:18 +00:00
fixing problems!
This commit is contained in:
@ -12,4 +12,8 @@ package java.util.jar;
|
|||||||
|
|
||||||
import java.util.zip.ZipEntry;
|
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(){
|
public long getTime(){
|
||||||
return millisTime;
|
return millisTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getJavaTime(){
|
||||||
|
return modTimeDate;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -285,6 +285,7 @@ public class ZipFile {
|
|||||||
public final int pointer;
|
public final int pointer;
|
||||||
|
|
||||||
public MyZipEntry(Window window, int pointer) {
|
public MyZipEntry(Window window, int pointer) {
|
||||||
|
super(null);
|
||||||
this.window = window;
|
this.window = window;
|
||||||
this.pointer = pointer;
|
this.pointer = pointer;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user