From bfa94d89fa4387df3d6eae9c8a67eb8147ce1529 Mon Sep 17 00:00:00 2001 From: Garry Newman Date: Fri, 24 Sep 2021 14:00:16 +0100 Subject: [PATCH] Fix TextFilteringContext not getting exposed --- Generator/Cleanup.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Generator/Cleanup.cs b/Generator/Cleanup.cs index 036699e..9ddda38 100644 --- a/Generator/Cleanup.cs +++ b/Generator/Cleanup.cs @@ -144,7 +144,7 @@ internal static string Expose( string name ) if ( name == "NetDebugOutput" ) return "public"; if ( name == "ItemPreviewType" ) return "public"; if ( name == "OverlayToStoreFlag" ) return "public"; - if ( name == "TextFilteringContext " ) return "public"; + if ( name == "TextFilteringContext" ) return "public"; return "internal"; }