From d7f4ea2c0abfe6fb487164f3ade9a0ee9c44a9f8 Mon Sep 17 00:00:00 2001 From: "Joachim Wuttke (l)" <j.wuttke@fz-juelich.de> Date: Sat, 6 Aug 2016 11:52:33 +0200 Subject: [PATCH] rm unused flatFilename --- Core/Tools/Utils.cpp | 15 --------------- Core/Tools/Utils.h | 3 --- 2 files changed, 18 deletions(-) diff --git a/Core/Tools/Utils.cpp b/Core/Tools/Utils.cpp index eb3f0842a32..e0e58c7d46c 100644 --- a/Core/Tools/Utils.cpp +++ b/Core/Tools/Utils.cpp @@ -78,21 +78,6 @@ std::string Utils::String::join(const std::vector<std::string>& joinable, const return result; } -//! Returns flattened filename, i.e. all directory separator ('/' or '\') are replaced by '_'. -std::string Utils::String::flatFilename(const std::string& fname) -{ - std::string result = fname; - for (size_t i=0; i<result.size(); ++i) - if (result[i]=='/' || result[i]=='\\') - result[i] = '_'; - return result; -} - -//! Returns file names that agree with glob pattern. -std::vector<std::string> glob(const std::string& pattern) -{ -} - int Utils::System::getThreadHardwareConcurrency() { return std::thread::hardware_concurrency(); diff --git a/Core/Tools/Utils.h b/Core/Tools/Utils.h index ff29a59e52c..5d3391559ef 100644 --- a/Core/Tools/Utils.h +++ b/Core/Tools/Utils.h @@ -46,9 +46,6 @@ public: //! Returns string obtain by joining vector elements static std::string join(const std::vector<std::string>& joinable, const std::string& joint); - - //! Returns flattened filename, i.e. all directory separator ('/' or '\') are replaced by '_'. - static std::string flatFilename(const std::string& filename); }; -- GitLab