Reformatted.

This commit is contained in:
2016-04-19 02:11:47 +01:00
parent 6a8499f8ed
commit f8bc81d4f5
149 changed files with 6983 additions and 6970 deletions

View File

@@ -93,10 +93,10 @@ namespace DiscImageChef.Decoders.DVD
public static SpareAreaInformation? Decode(byte[] response)
{
if (response == null)
if(response == null)
return null;
if (response.Length != 16)
if(response.Length != 16)
return null;
SpareAreaInformation sai = new SpareAreaInformation();
@@ -113,7 +113,7 @@ namespace DiscImageChef.Decoders.DVD
public static string Prettify(SpareAreaInformation? sai)
{
if (sai == null)
if(sai == null)
return null;
SpareAreaInformation decoded = sai.Value;