From 21bfa02dd283e3c8199519901d128a7f2340a172 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Fri, 22 Oct 2021 01:19:04 +0200 Subject: [PATCH] Kernel: Remove unused InodeIdentifier::to_string() --- Kernel/FileSystem/InodeIdentifier.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/Kernel/FileSystem/InodeIdentifier.h b/Kernel/FileSystem/InodeIdentifier.h index 080d2f2746..8cee21a3fb 100644 --- a/Kernel/FileSystem/InodeIdentifier.h +++ b/Kernel/FileSystem/InodeIdentifier.h @@ -8,7 +8,6 @@ #include #include -#include #include 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 };