Skip to content

Commit af16770

Browse files
committed
RECS0113: Redundant comma in array initializer
[ci skip]
1 parent e738f2a commit af16770

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

ICSharpCode.SharpZipLib.Tests/Zip/ZipTests.cs

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3681,11 +3681,11 @@ public void UnicodeNames()
36813681

36823682
f.BeginUpdate(new MemoryArchiveStorage());
36833683

3684-
var names = new string[]
3685-
{
3686-
"\u030A\u03B0", // Greek
3687-
"\u0680\u0685", // Arabic
3688-
};
3684+
var names = new string[]
3685+
{
3686+
"\u030A\u03B0", // Greek
3687+
"\u0680\u0685" // Arabic
3688+
};
36893689

36903690
foreach (string name in names)
36913691
{
@@ -3835,11 +3835,11 @@ public void NameFactory()
38353835
((ZipEntryFactory)f.EntryFactory).SetAttributes = 1;
38363836
f.BeginUpdate(new MemoryArchiveStorage());
38373837

3838-
var names = new string[]
3839-
{
3840-
"\u030A\u03B0", // Greek
3841-
"\u0680\u0685", // Arabic
3842-
};
3838+
var names = new string[]
3839+
{
3840+
"\u030A\u03B0", // Greek
3841+
"\u0680\u0685" // Arabic
3842+
};
38433843

38443844
foreach (string name in names)
38453845
{

0 commit comments

Comments
 (0)