removed redundant Send<T> from IHttpClient

This commit is contained in:
Brendan Forster
2014-02-18 11:15:13 +11:00
parent c3cf8d1cca
commit 5f97d10970
2 changed files with 0 additions and 16 deletions
-8
View File
@@ -11,14 +11,6 @@ namespace Octokit.Internal
/// </remarks>
public interface IHttpClient
{
/// <summary>
/// Sends the specified request and returns a response.
/// </summary>
/// <typeparam name="T">The type of data to send</typeparam>
/// <param name="request">A <see cref="IRequest"/> that represents the HTTP request</param>
/// <returns>A <see cref="Task{T}" /> of <see cref="IResponse{T}"/></returns>
Task<IResponse<T>> Send<T>(IRequest request);
/// <summary>
/// Sends the specified request and returns a response.
/// </summary>