1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:57:35 +00:00

Kernel: Remove unused InodeIdentifier::to_string()

This commit is contained in:
Andreas Kling 2021-10-22 01:19:04 +02:00
parent 9143d37907
commit 21bfa02dd2

View file

@ -8,7 +8,6 @@
#include <AK/ByteBuffer.h>
#include <AK/DistinctNumeric.h>
#include <AK/String.h>
#include <AK/Types.h>
namespace Kernel {
@ -45,8 +44,6 @@ public:
return m_fsid != other.m_fsid || m_index != other.m_index;
}
String to_string() const { return String::formatted("{}:{}", m_fsid, m_index); }
private:
u32 m_fsid { 0 };
InodeIndex m_index { 0 };