Code Cleanup

This commit is contained in:
ema
2025-05-23 02:39:26 +08:00
parent 34f69cc4f4
commit 06e7dbaae7
10 changed files with 89 additions and 123 deletions

View File

@@ -92,7 +92,7 @@ public class ArchiveFileEntry : IComparable<ArchiveFileEntry>
if (IsFolder)
return $"{Name}";
var en = Encrypted ? "*" : "";
var en = Encrypted ? "*" : string.Empty;
return $"{Name}{en},{IsFolder},{Size},{ModifiedDate}";
}
}