Skip to content

Commit c27f86a

Browse files
Removed param name="parameter" for AsyncCommand.ExecuteAsync
1 parent f130ada commit c27f86a

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

Src/AsyncAwaitBestPractices.MVVM/AsyncCommand.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,6 @@ public event EventHandler CanExecuteChanged
141141
/// Executes the Command as a Task
142142
/// </summary>
143143
/// <returns>The executed Task</returns>
144-
/// <param name="parameter">Data used by the command. If the command does not require data to be passed, this object can be set to null.</param>
145-
146144
public Task ExecuteAsync() => _execute();
147145

148146
void ICommand.Execute(object parameter) => _execute().SafeFireAndForget(_continueOnCapturedContext, _onException);

0 commit comments

Comments
 (0)