diff options
author | Vasily Gerasimov <UgnineSirdis@gmail.com> | 2022-02-10 16:49:10 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:10 +0300 |
commit | 1eb755fbca92172a6aec2f57371b2b3a19dfab43 (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /util/folder/path.cpp | |
parent | 6cdc8f140213c595e4ad38bc3d97fcef1146b8c3 (diff) | |
download | ydb-1eb755fbca92172a6aec2f57371b2b3a19dfab43.tar.gz |
Restoring authorship annotation for Vasily Gerasimov <UgnineSirdis@gmail.com>. Commit 2 of 2.
Diffstat (limited to 'util/folder/path.cpp')
-rw-r--r-- | util/folder/path.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/folder/path.cpp b/util/folder/path.cpp index e16a979fc1d..bfe0c67d687 100644 --- a/util/folder/path.cpp +++ b/util/folder/path.cpp @@ -289,7 +289,7 @@ void TFsPath::RenameTo(const TString& newPath) const { ythrow TIoException() << "bad new file name"; } if (!NFs::Rename(Path_, newPath)) { - ythrow TIoSystemError() << "failed to rename " << Path_ << " to " << newPath; + ythrow TIoSystemError() << "failed to rename " << Path_ << " to " << newPath; } } @@ -326,7 +326,7 @@ TFsPath TFsPath::ReadLink() const { ythrow TIoException() << "not a symlink " << *this; } - return NFs::ReadLink(*this); + return NFs::ReadLink(*this); } bool TFsPath::Exists() const { |