Rename CoreInode to Inode.

I don't know what I was thinking here. Clearly Inode is the right name.
This commit is contained in:
Andreas Kling 2018-12-19 21:18:28 +01:00
parent 038d8641f9
commit d506c857ab
Notes: sideshowbarker 2024-07-19 16:08:03 +09:00
9 changed files with 30 additions and 30 deletions

View file

@ -273,7 +273,7 @@ Vector<unsigned> Ext2FS::block_list_for_inode(const ext2_inode& e2inode) const
}
Ext2FSInode::Ext2FSInode(Ext2FS& fs, unsigned index, const ext2_inode& raw_inode)
: CoreInode(fs, index)
: Inode(fs, index)
, m_raw_inode(raw_inode)
{
}
@ -304,7 +304,7 @@ void Ext2FSInode::populate_metadata() const
}
}
RetainPtr<CoreInode> Ext2FS::get_inode(InodeIdentifier inode) const
RetainPtr<Inode> Ext2FS::get_inode(InodeIdentifier inode) const
{
ASSERT(inode.fsid() == id());
{