From 7e7f667af7ea922d589b96ceb5f49f4263d79623 Mon Sep 17 00:00:00 2001 From: Gerard Smit Date: Tue, 9 Jul 2024 23:09:12 +0200 Subject: [PATCH] Remove duplicated code --- src/Zio/FileSystems/ComposeFileSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Zio/FileSystems/ComposeFileSystem.cs b/src/Zio/FileSystems/ComposeFileSystem.cs index ff8b418..7605c7d 100644 --- a/src/Zio/FileSystems/ComposeFileSystem.cs +++ b/src/Zio/FileSystems/ComposeFileSystem.cs @@ -276,5 +276,5 @@ protected override UPath ConvertPathFromInternalImpl(string innerPath) protected abstract UPath ConvertPathFromDelegate(UPath path); protected override (IFileSystem FileSystem, UPath Path) ResolvePathImpl(UPath path) - => Fallback?.ResolvePath(ConvertPathToDelegate(path)) ?? (this, path); + => Fallback?.ResolvePath(ConvertPathToDelegate(path)) ?? base.ResolvePathImpl(path); } \ No newline at end of file