Kernel: Make FileSystem::class_name() return a StringView

This commit is contained in:
Andreas Kling 2021-07-17 20:59:06 +02:00
parent a2e734d202
commit a803c4026c
Notes: sideshowbarker 2024-07-18 08:51:48 +09:00
9 changed files with 8 additions and 13 deletions

View file

@ -148,11 +148,6 @@ bool Ext2FS::initialize()
return true;
}
const char* Ext2FS::class_name() const
{
return "Ext2FS";
}
NonnullRefPtr<Inode> Ext2FS::root_inode() const
{
return *get_inode({ fsid(), EXT2_ROOT_INO });