Kernel: Remove some dead code and unused includes in SysFS files

This commit is contained in:
Andreas Kling 2021-07-11 01:12:29 +02:00
commit 807aadbe6e
Notes: sideshowbarker 2024-07-18 09:21:39 +09:00
4 changed files with 1 additions and 9 deletions

View file

@ -6,14 +6,9 @@
#pragma once
#include <AK/Singleton.h>
#include <AK/String.h>
#include <AK/Types.h>
#include <Kernel/FileSystem/FileSystem.h>
#include <Kernel/FileSystem/Inode.h>
#include <Kernel/FileSystem/InodeMetadata.h>
#include <Kernel/SystemExposed.h>
#include <Kernel/TTY/SlavePTY.h>
namespace Kernel {
@ -97,7 +92,6 @@ protected:
class SysFSDirectoryInode : public SysFSInode {
friend class SysFS;
friend class SysFSRootDirectoryInode;
public:
static NonnullRefPtr<SysFSDirectoryInode> create(SysFS const&, SysFSComponent const&);