1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 13:38:11 +00:00

Pong: Remove unused Core::ConfigFile imports

This application was including, opening and unveiling the path for
a config file, however it never actually reads or saves anything
from the configuration file.

Since it's easy enough to add it back later if needed, probably
makes sense to remove the unused code right now?
This commit is contained in:
Mustafa Quraish 2021-08-26 20:34:43 -04:00 committed by Andreas Kling
parent 998d3a98ec
commit 4bd9ac1f66
2 changed files with 1 additions and 10 deletions

View file

@ -7,7 +7,6 @@
#pragma once
#include <AK/Optional.h>
#include <LibCore/ConfigFile.h>
#include <LibGUI/Application.h>
#include <LibGUI/MessageBox.h>
#include <LibGUI/Painter.h>

View file

@ -1,11 +1,10 @@
/*
* Copyright (c) 2020, the SerenityOS developers.
* Copyright (c) 2020-2021, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include "Game.h"
#include <LibCore/ConfigFile.h>
#include <LibGUI/Application.h>
#include <LibGUI/Icon.h>
#include <LibGUI/Menu.h>
@ -28,18 +27,11 @@ int main(int argc, char** argv)
return 1;
}
auto config = Core::ConfigFile::open_for_app("Pong");
if (unveil("/res", "r") < 0) {
perror("unveil");
return 1;
}
if (unveil(config->filename().characters(), "rwc") < 0) {
perror("unveil");
return 1;
}
if (unveil(nullptr, nullptr) < 0) {
perror("unveil");
return 1;