mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
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:
@@ -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;)
|
||||
|
||||
Reference in New Issue
Block a user