diff options
Diffstat (limited to 'runtime/utils.cc')
| -rw-r--r-- | runtime/utils.cc | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/runtime/utils.cc b/runtime/utils.cc index 8ab8cd2814..b676ae5ae5 100644 --- a/runtime/utils.cc +++ b/runtime/utils.cc @@ -1115,15 +1115,6 @@ bool GetDalvikCacheFilename(const char* location, const char* cache_location, return true; } -std::string GetDalvikCacheFilenameOrDie(const char* location, const char* cache_location) { - std::string ret; - std::string error_msg; - if (!GetDalvikCacheFilename(location, cache_location, &ret, &error_msg)) { - LOG(FATAL) << error_msg; - } - return ret; -} - static void InsertIsaDirectory(const InstructionSet isa, std::string* filename) { // in = /foo/bar/baz // out = /foo/bar/<isa>/baz |