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

@@ -39,21 +39,21 @@ namespace DiscImageChef.Tests.Filesystems
[TestFixture]
public class FAT16_Atari
{
readonly string[] testfiles = {"tos_1.04.vdi.lz", "tos_1.04_small.vdi.lz",};
readonly string[] testfiles = {"tos_1.04.vdi.lz", "tos_1.04_small.vdi.lz"};
readonly ulong[] sectors = {81920, 16384,};
readonly ulong[] sectors = {81920, 16384};
readonly uint[] sectorsize = {512, 512,};
readonly uint[] sectorsize = {512, 512};
readonly long[] clusters = {10239, 8191,};
readonly long[] clusters = {10239, 8191};
readonly int[] clustersize = {4096, 1024,};
readonly int[] clustersize = {4096, 1024};
readonly string[] volumename = {null, null,};
readonly string[] volumename = {null, null};
readonly string[] volumeserial = {"BA9831", "2019E1",};
readonly string[] volumeserial = {"BA9831", "2019E1"};
readonly string[] oemid = {null, null,};
readonly string[] oemid = {null, null};
[Test]
public void Test()