Skip to content

Commit

Permalink
format code
Browse files Browse the repository at this point in the history
  • Loading branch information
martinscholz83 committed Jul 5, 2016
1 parent d2748c3 commit 30f058e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Octokit/Http/HttpClientAdapter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public async Task<IResponse> Send(IRequest request, CancellationToken cancellati

var cancellationTokenForRequest = GetCancellationTokenForRequest(request, cancellationToken);

using(var requestMessage = BuildRequestMessage(request))
using (var requestMessage = BuildRequestMessage(request))
{
var response = await GetSuccessfulResponse(requestMessage, cancellationTokenForRequest);

Expand Down Expand Up @@ -263,7 +263,7 @@ protected virtual void Dispose(bool disposing)
}

internal class RedirectHandler : DelegatingHandler
{
{
public bool Enabled { get; set; }

protected override async Task<HttpResponseMessage> SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
Expand Down

0 comments on commit 30f058e

Please sign in to comment.