Skip to content

Commit

Permalink
Remove duplicated code
Browse files Browse the repository at this point in the history
  • Loading branch information
GerardSmit committed Jul 9, 2024
1 parent 574a76d commit 7e7f667
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Zio/FileSystems/ComposeFileSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

0 comments on commit 7e7f667

Please sign in to comment.