| 3024 | S3FileSystem::~S3FileSystem() {} |
| 3025 | |
| 3026 | Result<std::shared_ptr<S3FileSystem>> S3FileSystem::Make( |
| 3027 | const S3Options& options, const io::IOContext& io_context) { |
| 3028 | RETURN_NOT_OK(CheckS3Initialized()); |
| 3029 | |
| 3030 | std::shared_ptr<S3FileSystem> ptr(new S3FileSystem(options, io_context)); |
| 3031 | RETURN_NOT_OK(ptr->impl_->Init()); |
| 3032 | return ptr; |
| 3033 | } |
| 3034 | |
| 3035 | bool S3FileSystem::Equals(const FileSystem& other) const { |
| 3036 | if (this == &other) { |
nothing calls this directly
no test coverage detected