| 212 | } |
| 213 | |
| 214 | Result<std::shared_ptr<io::InputStream>> FileSystem::OpenInputStream( |
| 215 | const FileInfo& info) { |
| 216 | RETURN_NOT_OK(ValidateInputFileInfo(info)); |
| 217 | return OpenInputStream(info.path()); |
| 218 | } |
| 219 | |
| 220 | Result<std::shared_ptr<io::RandomAccessFile>> FileSystem::OpenInputFile( |
| 221 | const FileInfo& info) { |
no test coverage detected