Skip to content

Commit

Permalink
UTF8不用转换编码
Browse files Browse the repository at this point in the history
  • Loading branch information
hejingwen committed Dec 29, 2023
1 parent fa52dd4 commit 76f1da6
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ private bool TryDecompile(byte[] luaBytes, out byte[] luaCode)
if (decompileProcess.ExitCode == 0)
{
luaCode = Encoding.UTF8.GetBytes(decompileProcess.Output);
luaCode = Encoding.Convert(Encoding.UTF8, Encoding.Default, luaCode);
}
else
{
Expand Down

0 comments on commit 76f1da6

Please sign in to comment.