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:
@@ -92,7 +92,7 @@ public sealed partial class LisaFS
|
||||
// Do same trick as Mac OS X, replace filesystem '/' with '-',
|
||||
// as '-' is the path separator in Lisa OS
|
||||
contents = (from entry in _catalogCache where entry.parentID == dirId
|
||||
select StringHandlers.CToString(entry.filename, Encoding).Replace('/', '-')).ToList();
|
||||
select StringHandlers.CToString(entry.filename, _encoding).Replace('/', '-')).ToList();
|
||||
|
||||
/// <summary>Reads, interprets and caches the Catalog File</summary>
|
||||
ErrorNumber ReadCatalog()
|
||||
|
||||
Reference in New Issue
Block a user