提交 9d296708 authored 作者: Thomas Mueller's avatar Thomas Mueller

Add missing method

上级 be681245
......@@ -204,6 +204,11 @@ class FileUnstable extends FileBase {
return channel.read(dst);
}
@Override
public int read(ByteBuffer dst, long pos) throws IOException {
return channel.read(dst, pos);
}
@Override
public FileChannel position(long pos) throws IOException {
channel.position(pos);
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论