Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
dellis1972 committed Nov 4, 2024
1 parent 01da59b commit 969c67e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public IList<R> Parse (string resourceDirectory, IEnumerable<string> additionalR
var path = Directory.GetParent (entry.FullName).Name;
if (ext == ".xml" || ext == ".axml") {
if (string.Compare (path, "raw", StringComparison.OrdinalIgnoreCase) != 0) {
using var ms = new MemoryStream();
using var ms = new MemoryStream ();
entry.Extract (ms);
ms.Position = 0;
using XmlReader reader = XmlReader.Create (ms);
Expand Down

0 comments on commit 969c67e

Please sign in to comment.