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.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/common/fs/file.h') diff --git a/src/common/fs/file.h b/src/common/fs/file.h index 50e270c5b..0f10b6003 100644 --- a/src/common/fs/file.h +++ b/src/common/fs/file.h @@ -71,7 +71,7 @@ template /** * Writes a string to a file at path and returns the number of characters successfully written. - * If an file already exists at path, its contents will be erased. + * If a file already exists at path, its contents will be erased. * If the filesystem object at path is not a file, this function returns 0. * * @param path Filesystem path @@ -95,7 +95,6 @@ template /** * Appends a string to a file at path and returns the number of characters successfully written. - * If a file does not exist at path, WriteStringToFile is called instead. * If the filesystem object at path is not a file, this function returns 0. * * @param path Filesystem path -- cgit v1.2.3