diff options
Diffstat (limited to 'Userland/Applications/SystemMonitor/GraphWidget.cpp')
-rw-r--r-- | Userland/Applications/SystemMonitor/GraphWidget.cpp | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/Userland/Applications/SystemMonitor/GraphWidget.cpp b/Userland/Applications/SystemMonitor/GraphWidget.cpp index f59112db77..238fbb3372 100644 --- a/Userland/Applications/SystemMonitor/GraphWidget.cpp +++ b/Userland/Applications/SystemMonitor/GraphWidget.cpp @@ -1,5 +1,6 @@ /* * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org> + * Copyright (c) 2022, the SerenityOS developers. * * SPDX-License-Identifier: BSD-2-Clause */ @@ -12,14 +13,6 @@ #include <LibGfx/Path.h> #include <LibGfx/SystemTheme.h> -GraphWidget::GraphWidget() -{ -} - -GraphWidget::~GraphWidget() -{ -} - void GraphWidget::add_value(Vector<u64, 1>&& value) { m_values.enqueue(move(value)); |