Move readEntireInode() up to FileSystem (from ext2.)

It's just a wrapper around multiple calls to readInodeBytes() now.
This commit is contained in:
Andreas Kling 2018-10-15 00:16:14 +02:00
commit 9528edab92
Notes: sideshowbarker 2024-07-19 18:48:03 +09:00
9 changed files with 39 additions and 52 deletions

View file

@ -5,5 +5,5 @@ ByteBuffer InodeIdentifier::readEntireFile() const
{
if (!fileSystem())
return { };
return fileSystem()->readInode(*this);
return fileSystem()->readEntireInode(*this);
}