mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Make Encoding a private field only for IReadOnlyFilesystem implementors.
This commit is contained in:
@@ -103,7 +103,6 @@ public sealed partial class ZFS
|
||||
out FileSystem metadata)
|
||||
{
|
||||
// ZFS is always UTF-8
|
||||
Encoding = Encoding.UTF8;
|
||||
information = "";
|
||||
metadata = new FileSystem();
|
||||
ErrorNumber errno;
|
||||
|
||||
@@ -28,7 +28,6 @@
|
||||
|
||||
using System;
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
using System.Text;
|
||||
using Aaru.CommonTypes.Interfaces;
|
||||
|
||||
namespace Aaru.Filesystems;
|
||||
@@ -58,8 +57,6 @@ namespace Aaru.Filesystems;
|
||||
SuppressMessage("ReSharper", "UnusedMember.Local"), SuppressMessage("ReSharper", "NotAccessedField.Local")]
|
||||
public sealed partial class ZFS : IFilesystem
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public Encoding Encoding { get; private set; }
|
||||
/// <inheritdoc />
|
||||
public string Name => Localization.ZFS_Name;
|
||||
/// <inheritdoc />
|
||||
|
||||
Reference in New Issue
Block a user