diff --git a/Userland/Applets/ResourceGraph/main.cpp b/Userland/Applets/ResourceGraph/main.cpp index 9dc5bf1a50d..bf23800d773 100644 --- a/Userland/Applets/ResourceGraph/main.cpp +++ b/Userland/Applets/ResourceGraph/main.cpp @@ -9,7 +9,6 @@ #include #include #include -#include #include #include #include @@ -241,13 +240,6 @@ int main(int argc, char** argv) return 1; } - // FIXME: This is required by Core::ProcessStatisticsReader. - // It would be good if we didn't depend on that. - if (unveil("/etc/passwd", "r") < 0) { - perror("unveil"); - return 1; - } - if (unveil("/proc/stat", "r") < 0) { perror("unveil"); return 1;