Skip to content

Commit

Permalink
Removed param name="parameter" for AsyncCommand.ExecuteAsync
Browse files Browse the repository at this point in the history
  • Loading branch information
TheCodeTraveler committed Dec 27, 2018
1 parent f130ada commit c27f86a
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions Src/AsyncAwaitBestPractices.MVVM/AsyncCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,6 @@ public event EventHandler CanExecuteChanged
/// Executes the Command as a Task
/// </summary>
/// <returns>The executed Task</returns>
/// <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>

public Task ExecuteAsync() => _execute();

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

0 comments on commit c27f86a

Please sign in to comment.