Skip to content

Commit

Permalink
🎨 Fix method override warning by adding new keyword to intentional …
Browse files Browse the repository at this point in the history
…override
  • Loading branch information
canterberry committed May 30, 2019
1 parent ed930fa commit 26ec34e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Blockmason.Link.Tests/MockHttpClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ public class MockHttpClient : HttpClient {
public MockHttpClient() : base() {
}

public Task<HttpResponseMessage> SendAsync(HttpRequestMessage request) {
public new Task<HttpResponseMessage> SendAsync(HttpRequestMessage request) {
return new HttpResponseMessage();
}
}
Expand Down

0 comments on commit 26ec34e

Please sign in to comment.