moved ConfigureAwait onto same line as await

This commit is contained in:
Brendan Forster
2016-04-06 20:27:13 -04:00
parent 5b3d540207
commit c1c035cf01
7 changed files with 13 additions and 46 deletions
+1 -2
View File
@@ -57,8 +57,7 @@ namespace Octokit
try
{
var response = await Connection.Get<object>(endpoint, null, null)
.ConfigureAwait(false);
var response = await Connection.Get<object>(endpoint, null, null).ConfigureAwait(false);
return response.HttpResponse.IsTrue();
}
catch (NotFoundException)