Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ContextMenuManager/BluePointLilac.Methods/EncodingType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ private static bool IsUTF8Bytes(byte[] bytes)
int count = 1; //计算当前正分析的字符应还有的字节数
for(int i = 0; i < bytes.Length; i++)
{
byte curByte = bytes[i];//当前分析的字节.
int curByte = bytes[i];//当前分析的字节.
if(count == 1)
{
if(curByte >= 0x80)
Expand Down