LibCore: Remove unused header in EventReceiver

This commit is contained in:
Ben Wiederhake 2026-02-21 12:13:28 +01:00 committed by Andreas Kling
parent ca28b98b83
commit b33b08050a
5 changed files with 4 additions and 5 deletions

View file

@ -7,6 +7,7 @@
*/
#include <AK/Badge.h>
#include <AK/Vector.h>
#include <LibCore/EventLoop.h>
#include <LibCore/EventLoopImplementation.h>
#include <LibCore/EventReceiver.h>

View file

@ -6,8 +6,6 @@
*/
#include <AK/Assertions.h>
#include <AK/Badge.h>
#include <AK/JsonObject.h>
#include <LibCore/Event.h>
#include <LibCore/EventLoop.h>
#include <LibCore/EventReceiver.h>

View file

@ -10,10 +10,7 @@
#include <AK/AtomicRefCounted.h>
#include <AK/Forward.h>
#include <AK/Noncopyable.h>
#include <AK/OwnPtr.h>
#include <AK/StringView.h>
#include <AK/TypeCasts.h>
#include <AK/Vector.h>
#include <AK/Weakable.h>
#include <LibCore/Forward.h>

View file

@ -9,6 +9,8 @@
#pragma once
#include <AK/Concepts.h>
#include <AK/NonnullRefPtr.h>
#include <AK/Vector.h>
#include <LibCore/EventLoop.h>
#include <LibCore/EventReceiver.h>

View file

@ -10,6 +10,7 @@
#include <AK/ByteString.h>
#include <AK/Function.h>
#include <AK/MemoryStream.h>
#include <AK/OwnPtr.h>
#include <AK/RefCounted.h>
#include <AK/WeakPtr.h>
#include <LibCore/Notifier.h>