diff options
Diffstat (limited to 'lib/System/Win32/Path.cpp')
-rw-r--r-- | lib/System/Win32/Path.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/System/Win32/Path.cpp b/lib/System/Win32/Path.cpp index cb4594194a..095417f0fe 100644 --- a/lib/System/Win32/Path.cpp +++ b/lib/System/Win32/Path.cpp @@ -244,14 +244,6 @@ Path::isBytecodeFile() const { } bool -Path::isArchive() const { - if (readable()) { - return hasMagicNumber("!<arch>\012"); - } - return false; -} - -bool Path::exists() const { DWORD attr = GetFileAttributes(path.c_str()); return attr != INVALID_FILE_ATTRIBUTES; |