Index: Src/GoogleApis/Apis/Http/ConfigurableHttpClient.cs
===================================================================
--- a/Src/GoogleApis/Apis/Http/ConfigurableHttpClient.cs
+++ b/Src/GoogleApis/Apis/Http/ConfigurableHttpClient.cs
@@ -14,24 +14,20 @@
limitations under the License.
*/
-using System;
-using System.Collections.Generic;
-using System.Linq;
using System.Net.Http;
-using System.Text;
namespace Google.Apis.Http
{
///
- /// Configurable Http client inherits from and contains a reference to
+ /// Configurable HTTP client inherits from and contains a reference to
/// .
///
public class ConfigurableHttpClient : HttpClient
{
- /// Gets the configurable message handler.
+ /// Gets the configurable message handler.
public ConfigurableMessageHandler MessageHandler { get; private set; }
- /// Constructs a new Http client.
+ /// Constructs a new HTTP client.
public ConfigurableHttpClient(ConfigurableMessageHandler handler)
: base(handler)
{