From 74790e4f33b5d287859ae91df984753eaa84aa28 Mon Sep 17 00:00:00 2001 From: Morph <39850852+Morph1984@users.noreply.github.com> Date: Sun, 13 Jun 2021 10:55:59 -0400 Subject: common: fs: file: Remove redundant call to WriteStringToFile The Append open mode will create a new file if said file does not exist at a given path, making this call redundant. --- src/common/fs/file.cpp | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/common/fs/file.cpp') diff --git a/src/common/fs/file.cpp b/src/common/fs/file.cpp index 9f3de1cb0..a12836a0c 100644 --- a/src/common/fs/file.cpp +++ b/src/common/fs/file.cpp @@ -183,10 +183,6 @@ size_t WriteStringToFile(const std::filesystem::path& path, FileType type, size_t AppendStringToFile(const std::filesystem::path& path, FileType type, std::string_view string) { - if (!Exists(path)) { - return WriteStringToFile(path, type, string); - } - if (!IsFile(path)) { return 0; } -- cgit v1.2.3