mirror of
https://github.com/corda/corda.git
synced 2025-06-13 04:38:19 +00:00
classpath progress
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
package java.io;
|
||||
|
||||
public class FileOutputStream extends OutputStream {
|
||||
private final int fd;
|
||||
private int fd;
|
||||
|
||||
public FileOutputStream(FileDescriptor fd) {
|
||||
this.fd = fd.value;
|
||||
@ -42,5 +42,6 @@ public class FileOutputStream extends OutputStream {
|
||||
|
||||
public void close() throws IOException {
|
||||
close(fd);
|
||||
fd = -1;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user