renaming things is hard

This commit is contained in:
Brendan Forster
2015-05-31 20:34:29 +09:30
parent be57a70c71
commit d7d7efd2c7
5 changed files with 8 additions and 8 deletions
+3 -3
View File
@@ -7,13 +7,13 @@ namespace Octokit.Internal
public static class HttpMessageHandlerFactory
{
[SuppressMessage("Microsoft.Reliability", "CA2000:Dispose objects before losing scope")]
public static HttpClientHandler GetHandler()
public static HttpMessageHandler CreateDefault()
{
return GetHandler(null);
return CreateDefault(null);
}
[SuppressMessage("Microsoft.Reliability", "CA2000:Dispose objects before losing scope")]
public static HttpClientHandler GetHandler(IWebProxy proxy)
public static HttpMessageHandler CreateDefault(IWebProxy proxy)
{
var handler = new HttpClientHandler
{