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
@@ -41,8 +41,7 @@ namespace Octokit
TwoFactorRequiredException twoFactorException = null;
try
{
return await authorizationsClient.GetOrCreateApplicationAuthentication(clientId, clientSecret, newAuthorization)
.ConfigureAwait(false);
return await authorizationsClient.GetOrCreateApplicationAuthentication(clientId, clientSecret, newAuthorization).ConfigureAwait(false);
}
catch (TwoFactorRequiredException exception)
{