classpath progress

This commit is contained in:
Joel Dice
2007-07-26 20:39:53 -06:00
parent 7212ba1c30
commit c9f9b039e6
23 changed files with 411 additions and 10 deletions

View File

@ -1,7 +1,7 @@
package java.io;
public class FileInputStream extends InputStream {
private final int fd;
private int fd;
public FileInputStream(FileDescriptor fd) {
this.fd = fd.value;
@ -42,5 +42,6 @@ public class FileInputStream extends InputStream {
public void close() throws IOException {
close(fd);
fd = -1;
}
}