API additions for compatibility with harmony's java.util package

This commit is contained in:
Zsombor Gegesy
2010-08-15 14:01:33 +02:00
parent fc2c6d5100
commit 5dadac2cb8
9 changed files with 93 additions and 4 deletions

View File

@ -79,6 +79,10 @@ public class ObjectInputStream extends InputStream {
read('d');
return readDoubleToken();
}
public void defaultReadObject() throws IOException {
throw new UnsupportedOperationException();
}
private void skipSpace() throws IOException {
int c;