Skip to content

Commit

Permalink
Minor code simplification
Browse files Browse the repository at this point in the history
  • Loading branch information
tombogle committed Nov 18, 2024
1 parent 24fe780 commit a87ccb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SIL.Core.Desktop.Tests/Progress/Commands/CommandTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public void CommandCallsInitializeCallback()
public void CommandCallsFinalize()
{
TestCommand cmd = new TestCommand();
cmd.Finish += new EventHandler(OnFinish);
cmd.Finish += OnFinish;
cmd.BeginInvoke();
WaitOnBool(ref _onFinishCalled);
}
Expand Down

0 comments on commit a87ccb0

Please sign in to comment.