REFACTOR: Removed reduntant commas.

This commit is contained in:
2017-12-21 02:52:12 +00:00
parent d51f3f1988
commit f0d2e7dac9
156 changed files with 979 additions and 979 deletions

View File

@@ -38,21 +38,21 @@ namespace DiscImageChef.Tests.Filesystems
[TestFixture]
public class AFFS
{
readonly string[] testfiles = {"amigaos_3.9.adf.lz", "amigaos_3.9_intl.adf.lz",};
readonly string[] testfiles = {"amigaos_3.9.adf.lz", "amigaos_3.9_intl.adf.lz"};
readonly MediaType[] mediatypes = {MediaType.CBM_AMIGA_35_DD, MediaType.CBM_AMIGA_35_DD,};
readonly MediaType[] mediatypes = {MediaType.CBM_AMIGA_35_DD, MediaType.CBM_AMIGA_35_DD};
readonly ulong[] sectors = {1760, 1760,};
readonly ulong[] sectors = {1760, 1760};
readonly uint[] sectorsize = {512, 512,};
readonly uint[] sectorsize = {512, 512};
readonly long[] clusters = {1760, 1760,};
readonly long[] clusters = {1760, 1760};
readonly int[] clustersize = {512, 512,};
readonly int[] clustersize = {512, 512};
readonly string[] volumename = {"Volume label", "Volume label",};
readonly string[] volumename = {"Volume label", "Volume label"};
readonly string[] volumeserial = {"A5D9FAE2", "A5DA0CC9",};
readonly string[] volumeserial = {"A5D9FAE2", "A5DA0CC9"};
[Test]
public void Test()