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
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 });