remove unused funcs

This commit is contained in:
Alexandra Latysheva 2020-09-23 20:48:59 +00:00
parent 673154e65c
commit 358d919ea0
2 changed files with 0 additions and 10 deletions

View File

@ -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;
}

View File

@ -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);