chore: remove unused using statements (#1618)

Co-authored-by: Chris Pulman <chris.pulman@yahoo.com>
This commit is contained in:
Tim M 2023-11-21 00:59:29 +00:00 коммит произвёл GitHub
Родитель cd37b46a81
Коммит cb9a5b7f64
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
32 изменённых файлов: 34 добавлений и 141 удалений

Просмотреть файл

@ -1,9 +1,5 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Net;
using System.Net.Http;
using System.Threading.Tasks;
using System.Net;
using AutoFixture;
using BenchmarkDotNet.Attributes;

Просмотреть файл

@ -1,12 +1,4 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Net.Http;
using Refit;
using System.Threading.Tasks;
namespace Refit.Benchmarks
namespace Refit.Benchmarks
{
public interface IGitHubService
{

Просмотреть файл

@ -1,6 +1,4 @@
using System;
using BenchmarkDotNet.Running;
using BenchmarkDotNet.Running;
namespace Refit.Benchmarks
{

Просмотреть файл

@ -1,9 +1,4 @@
using System;
using System.IO;
using System.Net;
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
using System.Net;
namespace Refit.Benchmarks
{

Просмотреть файл

@ -1,6 +1,4 @@
using System;
namespace Refit
namespace Refit
{
sealed class AnonymousDisposable : IDisposable
{

Просмотреть файл

@ -1,8 +1,6 @@
using System;
using System.Net;
using System.Net;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Threading.Tasks;
namespace Refit
{

Просмотреть файл

@ -1,9 +1,7 @@
using System;
using System.Diagnostics.CodeAnalysis;
using System.Diagnostics.CodeAnalysis;
using System.Net;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Threading.Tasks;
namespace Refit
{

Просмотреть файл

@ -1,5 +1,4 @@
using System;
using System.Net.Http;
using System.Net.Http;
namespace Refit
{

Просмотреть файл

@ -1,8 +1,5 @@
using System;
using System.Net.Http;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Threading;
using System.Threading.Tasks;
namespace Refit
{

Просмотреть файл

@ -1,8 +1,4 @@
using System;
using System.Buffers;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
using System.Buffers;
#nullable enable

Просмотреть файл

@ -1,5 +1,4 @@
using System;
using System.Runtime.CompilerServices;
using System.Runtime.CompilerServices;
namespace Refit.Buffers
{

Просмотреть файл

@ -1,6 +1,4 @@
using System;
using System.Buffers;
using System.IO;
using System.Buffers;
using System.Runtime.CompilerServices;
namespace Refit.Buffers

Просмотреть файл

@ -1,6 +1,4 @@
using System;
using System.Collections.Concurrent;
using System.Linq;
using System.Collections.Concurrent;
using System.Net.Http;
namespace Refit

Просмотреть файл

@ -1,6 +1,4 @@
using System;
using System.Linq;
using System.Reflection;
using System.Reflection;
namespace Refit
{

Просмотреть файл

@ -1,9 +1,5 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Collections;
using System.Reflection;
using System.Text.Json.Serialization;
namespace Refit
{

Просмотреть файл

@ -1,11 +1,4 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net.Http;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Net.Http;
namespace Refit
{

Просмотреть файл

@ -1,10 +1,5 @@
using System;
using System.IO;
using System.Net.Http;
using System.Net.Http;
using System.Reflection;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace Refit
{

Просмотреть файл

@ -1,6 +1,4 @@
using System;
using System.IO;
using System.Net.Http;
using System.Net.Http;
using System.Net.Http.Headers;
namespace Refit

Просмотреть файл

@ -1,7 +1,4 @@
using System.Collections.Generic;
using System.Linq;
namespace System.Collections.Specialized
namespace System.Collections.Specialized
{
class NameValueCollection : Dictionary<string, string>
{

Просмотреть файл

@ -1,6 +1,4 @@
using System;
using System.Collections.Generic;
using System.Text.Json.Serialization;
using System.Text.Json.Serialization;
namespace Refit
{

Просмотреть файл

@ -21,10 +21,7 @@
using System.Diagnostics.CodeAnalysis;
using System.Diagnostics.Contracts;
using System.IO;
using System.Net.Http.Headers;
using System.Threading;
using System.Threading.Tasks;
namespace System.Net.Http
{

Просмотреть файл

@ -1,13 +1,8 @@
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Collections.Concurrent;
using System.Globalization;
using System.Linq;
using System.Net.Http;
using System.Reflection;
using System.Runtime.Serialization;
using System.Threading;
using System.Threading.Tasks;
namespace Refit
{
@ -86,7 +81,7 @@ namespace Refit
public bool Buffered { get; set; } = false;
/// <summary>
/// Optional Key-Value pairs, which are displayed in the property <see cref="HttpRequestMessage.Options"/> or <see cref="HttpRequestMessage.Properties"/>.
/// Optional Key-Value pairs, which are displayed in the property <see cref="HttpRequestMessage.Options"/> or <see cref="HttpRequestMessage.Properties"/>.
/// </summary>
public Dictionary<string, object> HttpRequestMessageOptions { get; set; }
}

Просмотреть файл

@ -1,5 +1,4 @@
using System;
using System.Net.Http;
using System.Net.Http;
namespace Refit
{

Просмотреть файл

@ -1,6 +1,4 @@
using System;
namespace Refit
namespace Refit
{
interface IRequestBuilderFactory
{

Просмотреть файл

@ -1,8 +1,4 @@
using System;
using System.Threading;
using System.Threading.Tasks;
namespace Refit
namespace Refit
{
partial class RequestBuilderImplementation
{

Просмотреть файл

@ -1,16 +1,9 @@
using System;
using System.Collections;
using System.Collections;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.ComponentModel.Design;
using System.IO;
using System.Linq;
using System.Net.Http;
using System.Reflection;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading;
using System.Threading.Tasks;
using System.Web;
namespace Refit
@ -753,7 +746,7 @@ namespace Refit
#else
ret.Properties[HttpRequestMessageOptions.InterfaceType] = TargetType;
ret.Properties[HttpRequestMessageOptions.RestMethodInfo] = restMethod.ToRestMethodInfo();
#endif
#endif
// NB: The URI methods in .NET are dumb. Also, we do this
// UriBuilder business so that we preserve any hardcoded query

Просмотреть файл

@ -1,13 +1,7 @@
using System;
using System.Net.Http;
using System.Collections.Generic;
using System.Net.Http;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Threading.Tasks;
using System.Text.RegularExpressions;
using System.Threading;
// Enable support for C# 9 record types
#if NETSTANDARD2_1 || !NET6_0_OR_GREATER

Просмотреть файл

@ -1,5 +1,4 @@
using System.Collections.Generic;
using System.Reflection;
using System.Reflection;
namespace Refit
{

Просмотреть файл

@ -1,5 +1,4 @@
using System;
using System.Collections.Concurrent;
using System.Collections.Concurrent;
using System.Net.Http;
namespace Refit

Просмотреть файл

@ -1,18 +1,8 @@
using System;
using System.Buffers;
using System.Diagnostics.Contracts;
using System.Linq;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Net.Http;
using System.Net.Http.Json;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Text;
using System.Text.Json;
using System.Text.Json.Serialization;
using System.Threading;
using System.Threading.Tasks;
using Refit.Buffers;
namespace Refit
{

Просмотреть файл

@ -1,6 +1,4 @@
using System;
namespace Refit
namespace Refit
{
class UniqueName
{

Просмотреть файл

@ -1,6 +1,4 @@
using System;
using System.Text.Json;
using System.Threading.Tasks;
using System.Text.Json;
namespace Refit
{