fixing problems!

This commit is contained in:
Chris Jordan 2013-07-08 16:30:17 -06:00
parent 08d441a905
commit 8eec1a0339
3 changed files with 9 additions and 1 deletions

View File

@ -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);
}
}

View File

@ -117,7 +117,10 @@ public class ZipEntry {
public long getTime(){
return millisTime;
}
public int getJavaTime(){
return modTimeDate;
}
/**

View File

@ -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;
}