💄 trim some long lines

This commit is contained in:
Brendan Forster
2013-10-31 12:22:43 +11:00
parent 43e82e124f
commit 70bb3bdbfc
5 changed files with 12 additions and 6 deletions
+2 -1
View File
@@ -109,7 +109,8 @@ namespace Octokit
{
Ensure.ArgumentNotNull(uri, "uri");
return _pagination.GetAllPages(async () => await GetPage<T>(uri, parameters, accepts).ConfigureAwait(false));
return _pagination.GetAllPages(async () => await GetPage<T>(uri, parameters, accepts)
.ConfigureAwait(false));
}
/// <summary>
+2 -1
View File
@@ -33,7 +33,8 @@ namespace Octokit.Internal
using (var requestMessage = BuildRequestMessage(request))
{
// Make the request
var responseMessage = await http.SendAsync(requestMessage, HttpCompletionOption.ResponseContentRead).ConfigureAwait(false);
var responseMessage = await http.SendAsync(requestMessage, HttpCompletionOption.ResponseContentRead)
.ConfigureAwait(false);
return await BuildResponse<T>(responseMessage).ConfigureAwait(false);
}
}