From 80856ae90e54d4a69319c31d64f5c6c65146d3ba Mon Sep 17 00:00:00 2001 From: yawn831831 Date: Thu, 19 Jun 2025 22:08:31 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E7=BB=9F=E4=B8=80=E5=8F=98=E9=87=8F?= =?UTF-8?q?=E5=90=8D=E7=A7=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SourceCodeGenerator.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SourceCodeGenerator.cs b/SourceCodeGenerator.cs index c4b0585..c642fde 100644 --- a/SourceCodeGenerator.cs +++ b/SourceCodeGenerator.cs @@ -62,7 +62,7 @@ namespace SourceCodeGeneratorUbtPlugin private const string HeaderSuffix = ".header.inl"; - private readonly HashSet ClassNameBlacklist = new(); + private readonly HashSet ClassBlacklist = new(); public SourceCodeGenerator(IUhtExportFactory factory) { @@ -128,7 +128,7 @@ namespace SourceCodeGeneratorUbtPlugin { if (!string.IsNullOrEmpty(className)) { - ClassNameBlacklist.Add(className); + ClassBlacklist.Add(className); } } } @@ -192,7 +192,7 @@ namespace SourceCodeGeneratorUbtPlugin /// True if the class should be exported, false if not protected virtual bool CanExportClass(UhtClass classObj) { - if (ClassNameBlacklist.Contains(classObj.SourceName)) + if (ClassBlacklist.Contains(classObj.SourceName)) { return false; }