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; }