浏览代码

C#: Remove "?" from CEscape and CUnescape

Raul Santos 2 年之前
父节点
当前提交
ac8ea5c821
共有 1 个文件被更改,包括 0 次插入2 次删除
  1. 0 2
      modules/mono/glue/GodotSharp/GodotSharp/Core/StringExtensions.cs

+ 0 - 2
modules/mono/glue/GodotSharp/GodotSharp/Core/StringExtensions.cs

@@ -229,7 +229,6 @@ namespace Godot
             sb.Replace("\v", "\\v");
             sb.Replace("\'", "\\'");
             sb.Replace("\"", "\\\"");
-            sb.Replace("?", "\\?");
 
             return sb.ToString();
         }
@@ -253,7 +252,6 @@ namespace Godot
             sb.Replace("\\v", "\v");
             sb.Replace("\\'", "\'");
             sb.Replace("\\\"", "\"");
-            sb.Replace("\\?", "?");
             sb.Replace("\\\\", "\\");
 
             return sb.ToString();