From fe670a3e68ee6f7d504ab372e78cba33b9b7752e Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Mon, 19 Jul 2021 11:50:17 -0700 Subject: [PATCH] FileUtil: Remove duplication in FileInfo constructor --- Source/Core/Common/FileUtil.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Source/Core/Common/FileUtil.cpp b/Source/Core/Common/FileUtil.cpp index a65f58f793..f8814b8c02 100644 --- a/Source/Core/Common/FileUtil.cpp +++ b/Source/Core/Common/FileUtil.cpp @@ -92,12 +92,6 @@ FileInfo::FileInfo(const char* path) : FileInfo(std::string(path)) #else FileInfo::FileInfo(const std::string& path) : FileInfo(path.c_str()) { -#ifdef ANDROID - if (IsPathAndroidContent(path)) - AndroidContentInit(path); - else -#endif - m_exists = stat(path.c_str(), &m_stat) == 0; } FileInfo::FileInfo(const char* path)