diff options
author | Sam Atkins <atkinssj@serenityos.org> | 2023-03-02 16:43:02 +0000 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2023-03-05 20:23:42 +0100 |
commit | ceaed7440e323d5a82ee9d3988e6cf4afd957834 (patch) | |
tree | 16053cd8a250221671a7a22396c88ec241ea680e /Userland/Libraries/LibCore/Directory.h | |
parent | a4667fdc9bef4f56faf4e0452240997b541e7aec (diff) | |
download | serenity-ceaed7440e323d5a82ee9d3988e6cf4afd957834.zip |
LibCore: Remove unused Directory::create_iterator() method
Diffstat (limited to 'Userland/Libraries/LibCore/Directory.h')
-rw-r--r-- | Userland/Libraries/LibCore/Directory.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Userland/Libraries/LibCore/Directory.h b/Userland/Libraries/LibCore/Directory.h index a8d2a18ab6..ccc97e0714 100644 --- a/Userland/Libraries/LibCore/Directory.h +++ b/Userland/Libraries/LibCore/Directory.h @@ -40,7 +40,6 @@ public: ErrorOr<NonnullOwnPtr<File>> open(StringView filename, File::OpenMode mode) const; ErrorOr<struct stat> stat() const; int fd() const { return m_directory_fd; } - ErrorOr<DirIterator> create_iterator() const; LexicalPath const& path() const { return m_path; } |