Skip to content

Commit

Permalink
Remove unneeded awaiter
Browse files Browse the repository at this point in the history
  • Loading branch information
patroza committed Oct 21, 2014
1 parent d92714a commit a5e1273
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions EntityFramework.Implementation/DbContextScope.cs
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,9 @@ private void CommitInternal()
_dbContexts.Commit();
}

private async Task CommitInternalAsync()
private Task CommitInternalAsync()
{
await _dbContexts.CommitAsync().ConfigureAwait(false);
return _dbContexts.CommitAsync();
}

private void RollbackInternal()
Expand Down

0 comments on commit a5e1273

Please sign in to comment.