| 679 | } |
| 680 | |
| 681 | Result<std::shared_ptr<io::RandomAccessFile>> LocalFileSystem::OpenInputFile( |
| 682 | const std::string& path) { |
| 683 | return OpenInputStreamGeneric<io::RandomAccessFile>(path, options_, io_context()); |
| 684 | } |
| 685 | |
| 686 | namespace { |
| 687 |
nothing calls this directly
no test coverage detected