Reformatted.

This commit is contained in:
2016-04-19 02:11:47 +01:00
parent 0ce352425c
commit 025f080728
7 changed files with 64 additions and 64 deletions

View File

@@ -42,12 +42,12 @@ namespace DiscImageChef
public static void ArrayFill<T>(T[] destinationArray, T[] value)
{
if (destinationArray == null)
if(destinationArray == null)
{
throw new ArgumentNullException("destinationArray");
}
if (value.Length > destinationArray.Length)
if(value.Length > destinationArray.Length)
{
throw new ArgumentException("Length of value array must not be more than length of destination");
}