Skip to content

Commit

Permalink
Fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
raman-m committed Oct 27, 2023
1 parent 5488d9a commit e87ed2e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ public async Task Invoke(HttpContext httpContext)
await _next.Invoke(httpContext);
}


private static string MergeQueryStringsWithoutDuplicateValues(string queryString, string newQueryString)
{
var queries = HttpUtility.ParseQueryString(queryString);
Expand All @@ -104,7 +103,6 @@ private static string MergeQueryStringsWithoutDuplicateValues(string queryString
if (!string.IsNullOrEmpty(key))
{
dict.Add(key, newQueries[key]);

}
}

Expand Down
2 changes: 0 additions & 2 deletions test/Ocelot.AcceptanceTests/RoutingWithQueryStringTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ public void Should_return_response_200_with_query_string_template_different_keys
.BDDfy();
}


[Fact]
public void Should_return_response_200_with_query_string_template_additional_key() //issue #327
{
Expand Down Expand Up @@ -129,7 +128,6 @@ public void Should_return_response_200_with_query_string_template_additional_key
.BDDfy();
}


[Fact]
public void Should_return_response_200_with_odata_query_string()
{
Expand Down

0 comments on commit e87ed2e

Please sign in to comment.