Remove unnecessary async-await pair

This commit is contained in:
Dean Herbert 2019-06-10 16:13:51 +09:00
parent f31b19e0d7
commit 9bdc8b47bb
1 changed files with 1 additions and 1 deletions

View File

@ -577,7 +577,7 @@ public async Task ImportFromStableAsync()
/// <param name="model">The model to populate.</param>
/// <param name="archive">The archive to use as a reference for population. May be null.</param>
/// <param name="cancellationToken">An optional cancellation token.</param>
protected virtual async Task Populate(TModel model, [CanBeNull] ArchiveReader archive, CancellationToken cancellationToken = default) => await Task.CompletedTask;
protected virtual Task Populate(TModel model, [CanBeNull] ArchiveReader archive, CancellationToken cancellationToken = default) => Task.CompletedTask;
/// <summary>
/// Perform any final actions before the import to database executes.