Loading...
common/FileManager.cpp dyld-1335 dyld-1235.2
--- dyld/dyld-1335/common/FileManager.cpp
+++ dyld/dyld-1235.2/common/FileManager.cpp
@@ -47,15 +47,13 @@
 FileManager::FileManager(Allocator& allocator, const SyscallDelegate* syscall)
 : _syscall(syscall), _allocator(&allocator), _fsUUIDMap(_allocator->makeUnique<OrderedMap<uint64_t,UUID>>(*_allocator)) {}
 
-FileManager::FileManager(Allocator& allocator)
-    : _syscall(nullptr), _allocator(&allocator), _fsUUIDMap(_allocator->makeUnique<OrderedMap<uint64_t,UUID>>(*_allocator)) {}
-
 void FileManager::swap(FileManager& other) {
     using std::swap;
 
     std::swap(_allocator,   other._allocator);
     std::swap(_fsUUIDMap,   other._fsUUIDMap);
 }
+
 
 FileRecord FileManager::fileRecordForPath(Allocator& allocator, const char* filePath) {
     const char* str = nullptr;