Skip to content

Commit

Permalink
Remove unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
sliekens committed Oct 3, 2015
1 parent a4d417d commit 3762cee
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/GW2NET.V2.Recipes/RecipeRepository.cs
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,6 @@ async Task<ICollection<int>> IRecipeRepository.DiscoverByInputAsync(int identifi
{
Input = identifier
};
var responseTask = this.serviceClient.SendAsync<ICollection<int>>(request, cancellationToken);
var response = await this.serviceClient.SendAsync<ICollection<int>>(request, cancellationToken).ConfigureAwait(false);
var ids = this.converterForIdentifiersResponse.Convert(response);
if (ids == null)
Expand Down
1 change: 0 additions & 1 deletion src/GW2NET.V2.Worlds/WorldRepository.cs
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,6 @@ async Task<IDictionaryRange<int, World>> IRepository<int, World>.FindAllAsync(Ca
{
Culture = self.Culture
};
var responseTask = this.serviceClient.SendAsync<ICollection<WorldDataContract>>(request, cancellationToken);
var response = await this.serviceClient.SendAsync<ICollection<WorldDataContract>>(request, cancellationToken).ConfigureAwait(false);
var values = this.converterForBulkResponse.Convert(response);
if (values == null)
Expand Down

0 comments on commit 3762cee

Please sign in to comment.