Litle fix. Fixed typo


git-svn-id: svn://10.0.0.236/trunk@54361 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
idk%eng.sun.com
1999-11-24 03:30:34 +00:00
parent e8ed6ef97b
commit beaaee18a3

View File

@@ -31,7 +31,8 @@ public class PlugletInputStream extends InputStream {
nativeInitialize();
}
public int read() throws IOException {
return read(buf,0,1);
read(buf,0,1);
return buf[0];
}
public int read(byte b[], int off, int len) throws IOException {
if (b == null) {