Update vtm-web modules (#240) #51

This commit is contained in:
Izumi Kawashima
2016-11-20 17:37:01 +09:00
committed by Emux
parent bfa5a095f0
commit 308497ffa6
16 changed files with 1410 additions and 752 deletions

View File

@@ -0,0 +1,22 @@
package java.io;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class FileInputStream extends InputStream {
static final Logger log = LoggerFactory.getLogger(FileInputStream.class);
public FileInputStream(File f) {
}
public FileInputStream(String s) throws FileNotFoundException {
log.debug("FileInputStream {}", s);
}
@Override
public int read() throws IOException {
return 0;
}
}