Skip to content

Commit a9d5df9

Browse files
committed
RECS0164: Redundant explicit delegate declaration
[ci skip]
1 parent f2d292d commit a9d5df9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ICSharpCode.SharpZipLib.Tests/Tar/TarTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public void EmptyTar()
4646
using ( TarArchive tarIn = TarArchive.CreateInputTarArchive(ms2) )
4747
{
4848
entryCount = 0;
49-
tarIn.ProgressMessageEvent += new ProgressMessageHandler(EntryCounter);
49+
tarIn.ProgressMessageEvent += EntryCounter;
5050
tarIn.ListContents();
5151
Assert.AreEqual(0, entryCount, "Expected 0 tar entries");
5252
}

0 commit comments

Comments
 (0)