mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-29 12:49:08 +00:00
Kernel: Rename FileBackedFS => FileBackedFileSystem
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
||||
* Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
@@ -8,12 +8,12 @@
|
||||
|
||||
namespace Kernel {
|
||||
|
||||
FileBackedFS::FileBackedFS(FileDescription& file_description)
|
||||
FileBackedFileSystem::FileBackedFileSystem(FileDescription& file_description)
|
||||
: m_file_description(file_description)
|
||||
{
|
||||
}
|
||||
|
||||
FileBackedFS::~FileBackedFS()
|
||||
FileBackedFileSystem::~FileBackedFileSystem()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user