diff options
author | Andreas Kling <kling@serenityos.org> | 2023-03-06 18:05:38 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2023-03-06 23:46:36 +0100 |
commit | be91020d0bb8b98929fd07761d0ed0e8e4cb8d64 (patch) | |
tree | 6cf4aaa81ddc4d3a185e36c090e52ef0d963a5bb /Userland/Applications/Settings/main.cpp | |
parent | 2973298df1a863851be57bbb279b9288396eddf0 (diff) | |
download | serenity-be91020d0bb8b98929fd07761d0ed0e8e4cb8d64.zip |
Settings: Remove outdated comment about NonnullPtrVector
Diffstat (limited to 'Userland/Applications/Settings/main.cpp')
-rw-r--r-- | Userland/Applications/Settings/main.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Userland/Applications/Settings/main.cpp b/Userland/Applications/Settings/main.cpp index 95bbac5c61..1d11727c05 100644 --- a/Userland/Applications/Settings/main.cpp +++ b/Userland/Applications/Settings/main.cpp @@ -75,7 +75,6 @@ public: } private: - // NonnullRefPtrVector doesn't allow us to quick_sort() it, because its operator[] returns T&. Vector<NonnullRefPtr<Desktop::AppFile>> m_apps; }; |