From 83d7e34f1bc52ac7811e67fa7aaf854be7989a4a Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Mon, 19 Dec 2022 11:23:28 +0000 Subject: [PATCH] Remove MapBlock method from IReadOnlyFilesystem --- Interfaces/IReadOnlyFilesystem.cs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Interfaces/IReadOnlyFilesystem.cs b/Interfaces/IReadOnlyFilesystem.cs index c17ec61..c0a1327 100644 --- a/Interfaces/IReadOnlyFilesystem.cs +++ b/Interfaces/IReadOnlyFilesystem.cs @@ -77,13 +77,6 @@ public interface IReadOnlyFilesystem : IFilesystem /// Frees all internal structures created by ErrorNumber Unmount(); - /// Maps a filesystem block from a file to a block from the underlying device. - /// Error number. - /// File path. - /// File block. - /// Device block. - ErrorNumber MapBlock(string path, long fileBlock, out long deviceBlock); - /// Gets the attributes of a file or directory /// Error number. /// File path.