mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
REFACTOR: Reformat code.
This commit is contained in:
@@ -138,10 +138,7 @@ namespace DiscImageChef.Checksums
|
||||
|
||||
StringBuilder adlerOutput = new StringBuilder();
|
||||
|
||||
for(int i = 0; i < hash.Length; i++)
|
||||
{
|
||||
adlerOutput.Append(hash[i].ToString("x2"));
|
||||
}
|
||||
for(int i = 0; i < hash.Length; i++) { adlerOutput.Append(hash[i].ToString("x2")); }
|
||||
|
||||
fileStream.Close();
|
||||
|
||||
@@ -175,10 +172,7 @@ namespace DiscImageChef.Checksums
|
||||
|
||||
StringBuilder adlerOutput = new StringBuilder();
|
||||
|
||||
for(int i = 0; i < hash.Length; i++)
|
||||
{
|
||||
adlerOutput.Append(hash[i].ToString("x2"));
|
||||
}
|
||||
for(int i = 0; i < hash.Length; i++) { adlerOutput.Append(hash[i].ToString("x2")); }
|
||||
|
||||
return adlerOutput.ToString();
|
||||
}
|
||||
@@ -193,5 +187,4 @@ namespace DiscImageChef.Checksums
|
||||
return Data(data, (uint)data.Length, out hash);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user