diff options
author | Mattes D <github@xoft.cz> | 2015-01-25 17:06:15 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2015-01-27 14:53:34 +0100 |
commit | 1b9c0f1030ec212eb39c5291f44d99313a2b638d (patch) | |
tree | 80fdf2912fa17c882697214d96c23a53051f8721 /src/OSSupport/File.cpp | |
parent | Fixed enchant packet handling. (diff) | |
download | cuberite-1b9c0f1030ec212eb39c5291f44d99313a2b638d.tar cuberite-1b9c0f1030ec212eb39c5291f44d99313a2b638d.tar.gz cuberite-1b9c0f1030ec212eb39c5291f44d99313a2b638d.tar.bz2 cuberite-1b9c0f1030ec212eb39c5291f44d99313a2b638d.tar.lz cuberite-1b9c0f1030ec212eb39c5291f44d99313a2b638d.tar.xz cuberite-1b9c0f1030ec212eb39c5291f44d99313a2b638d.tar.zst cuberite-1b9c0f1030ec212eb39c5291f44d99313a2b638d.zip |
Diffstat (limited to '')
-rw-r--r-- | src/OSSupport/File.cpp | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/src/OSSupport/File.cpp b/src/OSSupport/File.cpp index 1ee9feafe..8957dfaef 100644 --- a/src/OSSupport/File.cpp +++ b/src/OSSupport/File.cpp @@ -453,29 +453,6 @@ AString cFile::ReadWholeFile(const AString & a_FileName) -AString cFile::ReplaceFileNameInvalidChars(const AString & a_FileName, char a_Replacement) -{ - AString res(a_FileName); - for (auto & ch: res) - { - switch (ch) - { - case ':': - case '\\': - case '/': - { - ch = a_Replacement; - break; - } - } - } - return res; -} - - - - - int cFile::Printf(const char * a_Fmt, ...) { AString buf; |