Remove deprecated OutputStream::Write method.

PiperOrigin-RevId: 854235255
This commit is contained in:
Francis Tsui
2026-01-09 10:04:02 -08:00
committed by Copybara-Service
parent fbf66ad7e3
commit c2c54a3ca0
16 changed files with 61 additions and 82 deletions
@@ -28,7 +28,7 @@ TEST(PlatformTest, CreateOutputFileWithUnixPathSeparator) {
std::unique_ptr<OutputFile> output_file =
ImplementationPlatform::CreateOutputFile("C:\\tmp\\path1/path2\\x.txt");
EXPECT_NE(output_file, nullptr);
EXPECT_TRUE(output_file->Write(ByteArray("test")).Ok());
EXPECT_TRUE(output_file->Write("test").Ok());
}
TEST(PlatformTest, GetAppDataPath) {