Skip to content

Commit 819837f

Browse files
authored
Use EventArgs.Empty in DelegateCommand (#3179)
1 parent 82c1d27 commit 819837f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CefSharp.Wpf/DelegateCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public void RaiseCanExecuteChanged()
6666
{
6767
if (CanExecuteChanged != null)
6868
{
69-
CanExecuteChanged(this, new EventArgs());
69+
CanExecuteChanged(this, EventArgs.Empty);
7070
}
7171
}
7272
}

0 commit comments

Comments
 (0)