REFACTOR: Reformat code.

This commit is contained in:
2017-12-19 20:33:03 +00:00
parent 77edc7c91c
commit e6f6ace80b
704 changed files with 82627 additions and 83641 deletions

View File

@@ -34,7 +34,8 @@ namespace DiscImageChef
{
public static partial class ArrayHelpers
{
public static void CompareBytes(out bool different, out bool sameSize, byte[] compareArray1, byte[] compareArray2)
public static void CompareBytes(out bool different, out bool sameSize, byte[] compareArray1,
byte[] compareArray2)
{
different = false;
sameSize = true;
@@ -50,8 +51,7 @@ namespace DiscImageChef
sameSize = false;
leastBytes = compareArray2.LongLength;
}
else
leastBytes = compareArray1.LongLength;
else leastBytes = compareArray1.LongLength;
for(long i = 0; i < leastBytes; i++)
{
@@ -63,4 +63,4 @@ namespace DiscImageChef
}
}
}
}
}