Browse Source

Kernel: Remove unused InodeIdentifier::to_string()

Andreas Kling 3 years ago
parent
commit
21bfa02dd2
1 changed files with 0 additions and 3 deletions
  1. 0 3
      Kernel/FileSystem/InodeIdentifier.h

+ 0 - 3
Kernel/FileSystem/InodeIdentifier.h

@@ -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 };