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

Revert "Kernel: Copy command line to a safe place"

This reverts commit 41c005cb14.
This commit is contained in:
Andreas Kling 2020-08-22 16:34:12 +02:00
parent 0db7e04c2e
commit 8a21491d86
3 changed files with 4 additions and 22 deletions

View file

@ -36,8 +36,7 @@ class CommandLine {
AK_MAKE_ETERNAL;
public:
static void early_initialize(const char* cmd_line);
static void initialize();
static void initialize(const String&);
const String& string() const { return m_string; }
Optional<String> lookup(const String& key) const;