diff --git a/Kernel/FileSystem/VirtualFileSystem.h b/Kernel/FileSystem/VirtualFileSystem.h index 01bf6627ae..29064c4a65 100644 --- a/Kernel/FileSystem/VirtualFileSystem.h +++ b/Kernel/FileSystem/VirtualFileSystem.h @@ -60,7 +60,6 @@ public: KResult mount(NonnullRefPtr&&, StringView path); KResult mount(NonnullRefPtr&&, Custody& mount_point); - KResultOr> open(RefPtr&&, int options); KResultOr> open(StringView path, int options, mode_t mode, Custody& base); KResultOr> create(StringView path, int options, mode_t mode, Custody& parent_custody); KResult mkdir(StringView path, mode_t mode, Custody& base);