chore: remove debug code

This commit is contained in:
scientificworld
2025-12-27 22:56:54 +08:00
parent c94178744b
commit db28f8abd6

View File

@@ -32,7 +32,6 @@ using System.ComponentModel.Composition;
using GameRes.Compression; using GameRes.Compression;
using GameRes.Formats.Strings; using GameRes.Formats.Strings;
using GameRes.Utility; using GameRes.Utility;
using System.Diagnostics;
namespace GameRes.Formats.NeXAS namespace GameRes.Formats.NeXAS
{ {
@@ -238,7 +237,6 @@ namespace GameRes.Formats.NeXAS
name_buffer.Add ((byte)~c); name_buffer.Add ((byte)~c);
} }
var name = Binary.GetCString (name_buffer.ToArray(), 0); var name = Binary.GetCString (name_buffer.ToArray(), 0);
Debug.Write(name);
if (string.IsNullOrWhiteSpace (name)) if (string.IsNullOrWhiteSpace (name))
return null; return null;
var entry = FormatCatalog.Instance.Create<Entry> (name); var entry = FormatCatalog.Instance.Create<Entry> (name);