Redo Reformat and cleanup.

Rider EAP was having a bug interpreting .editorconfig that didn't generate the code style as we wanted.
This is now done with Rider-stable.
This commit is contained in:
2023-10-04 17:34:37 +01:00
parent bfe4402f0a
commit e59bc38221
5 changed files with 30 additions and 28 deletions

View File

@@ -62,8 +62,7 @@ public static class StringHandlers
{
if(twoBytes)
{
if(i + 1 < cString.Length &&
cString[i + 1] == 0)
if(i + 1 < cString.Length && cString[i + 1] == 0)
{
len++;
@@ -160,8 +159,7 @@ public static class StringHandlers
byte compId = dstring[0];
var temp = "";
if(compId != 8 &&
compId != 16)
if(compId != 8 && compId != 16)
return null;
for(var byteIndex = 1; byteIndex < dstring.Length;)