8189963: Remove version of FileChannelImpl::open without the 'direct' parameter

Remove old version of FileChannelImpl::open and update call sites

Reviewed-by: rriggs
This commit is contained in:
Brian Burkhalter 2017-10-26 11:08:31 -07:00
parent 9615ad79e8
commit 18cbe428c1
5 changed files with 7 additions and 11 deletions

View file

@ -110,7 +110,7 @@ class UnixChannelFactory {
static FileChannel newFileChannel(int fd, String path, boolean reading, boolean writing) {
FileDescriptor fdObj = new FileDescriptor();
fdAccess.set(fdObj, fd);
return FileChannelImpl.open(fdObj, path, reading, writing, null);
return FileChannelImpl.open(fdObj, path, reading, writing, false, null);
}
/**