From 358d919ea095e09e32f36dc530d657644d87ada1 Mon Sep 17 00:00:00 2001 From: Alexandra Latysheva Date: Wed, 23 Sep 2020 20:48:59 +0000 Subject: [PATCH] remove unused funcs --- oss-internship-2020/libtiff/test/helper.cc | 6 ------ oss-internship-2020/libtiff/test/helper.h | 4 ---- 2 files changed, 10 deletions(-) diff --git a/oss-internship-2020/libtiff/test/helper.cc b/oss-internship-2020/libtiff/test/helper.cc index 4a9c380..964c15d 100644 --- a/oss-internship-2020/libtiff/test/helper.cc +++ b/oss-internship-2020/libtiff/test/helper.cc @@ -43,9 +43,3 @@ std::string GetFilePath(const std::string& filename) { } return sandbox2::file::JoinPath(inDir, filename); } - -std::string GetOutPath() { return GetImagesDir() + '/' + kOutDir; } - -std::string GetNewFilePath(const std::string& filename) { - return GetOutPath() + '/' + filename; -} \ No newline at end of file diff --git a/oss-internship-2020/libtiff/test/helper.h b/oss-internship-2020/libtiff/test/helper.h index 20dd7ec..d3e8fa5 100644 --- a/oss-internship-2020/libtiff/test/helper.h +++ b/oss-internship-2020/libtiff/test/helper.h @@ -21,8 +21,6 @@ #include "sandboxed_api/sandbox2/util/temp_file.h" #include "sandboxed_api/util/status_matchers.h" -const std::string kOutDir = "output"; - using ::sapi::IsOk; using ::testing::Eq; using ::testing::IsFalse; @@ -30,6 +28,4 @@ using ::testing::IsTrue; using ::testing::Ne; using ::testing::NotNull; -std::string GetOutPath(); std::string GetFilePath(const std::string& filename); -std::string GetNewFilePath(const std::string& filename); \ No newline at end of file