1
0
Fork 0
mirror of https://github.com/geometer/FBReaderJ.git synced 2025-10-04 18:29:23 +02:00

better j2me compilability (22 errors now)

git-svn-id: https://only.mawhrin.net/repos/FBReaderJ/trunk@601 6a642e6f-84f6-412e-ac94-c4a38d5a04b0
This commit is contained in:
Nikolay Pultsin 2008-02-21 06:26:10 +00:00
parent a336b2a950
commit b71a9097cb
4 changed files with 34 additions and 5 deletions

View file

@ -0,0 +1,10 @@
package java.util.zip;
import java.io.InputStream;
public class ZipInputStream extends InputStream {
public int read() {
// TODO: implement
return 0;
}
}