1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-22 17:15:08 +00:00

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
9 changed files with 30 additions and 30 deletions

View file

@ -227,7 +227,7 @@ InodeIdentifier SynthFS::find_parent_of_inode(InodeIdentifier inode) const
return (*it).value->m_parent;
}
RetainPtr<CoreInode> SynthFS::get_inode(InodeIdentifier inode) const
RetainPtr<Inode> SynthFS::get_inode(InodeIdentifier inode) const
{
auto it = m_inodes.find(inode.index());
if (it == m_inodes.end())
@ -236,7 +236,7 @@ RetainPtr<CoreInode> SynthFS::get_inode(InodeIdentifier inode) const
}
SynthFSInode::SynthFSInode(SynthFS& fs, unsigned index)
: CoreInode(fs, index)
: Inode(fs, index)
{
m_metadata.inode = { fs.id(), index };
}