Stop passing file size into InputFile c'tor.

PiperOrigin-RevId: 845989622
This commit is contained in:
Francis Tsui
2025-12-17 18:01:07 -08:00
committed by Copybara-Service
parent 0fe6eb566f
commit b88fbc6636
11 changed files with 63 additions and 62 deletions
@@ -133,7 +133,7 @@ std::unique_ptr<InputFile> ImplementationPlatform::CreateInputFile(PayloadId pay
std::unique_ptr<InputFile> ImplementationPlatform::CreateInputFile(const std::string& file_path,
size_t size) {
return shared::IOFile::CreateInputFile(file_path, size);
return shared::IOFile::CreateInputFile(file_path);
}
ABSL_DEPRECATED("This interface will be deleted in the near future.")