Removed unused using statements

Signed-off-by: Whit Waldo <whit.waldo@innovian.net>
This commit is contained in:
Whit Waldo 2025-06-20 02:52:43 -05:00
parent 25991e9851
commit 2392cded84
8 changed files with 0 additions and 18 deletions

View File

@ -11,9 +11,6 @@
// limitations under the License. // limitations under the License.
// ------------------------------------------------------------------------ // ------------------------------------------------------------------------
using System.Runtime.Serialization;
using System.Text.Json.Serialization;
namespace Dapr.Jobs.Models.Responses; namespace Dapr.Jobs.Models.Responses;
/// <summary> /// <summary>

View File

@ -12,7 +12,6 @@
// ------------------------------------------------------------------------ // ------------------------------------------------------------------------
using System; using System;
using Xunit;
using ArgumentException = System.ArgumentException; using ArgumentException = System.ArgumentException;
namespace Dapr.Jobs.Test; namespace Dapr.Jobs.Test;

View File

@ -14,7 +14,6 @@
using System; using System;
using System.Text.Json; using System.Text.Json;
using Grpc.Net.Client; using Grpc.Net.Client;
using Xunit;
namespace Dapr.Jobs.Test; namespace Dapr.Jobs.Test;

View File

@ -15,7 +15,6 @@ using System;
using System.Net.Http; using System.Net.Http;
using Dapr.Jobs.Models; using Dapr.Jobs.Models;
using Moq; using Moq;
using Xunit;
namespace Dapr.Jobs.Test; namespace Dapr.Jobs.Test;

View File

@ -11,7 +11,6 @@
// limitations under the License. // limitations under the License.
// ------------------------------------------------------------------------ // ------------------------------------------------------------------------
using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Net.Http; using System.Net.Http;

View File

@ -14,26 +14,17 @@
#nullable enable #nullable enable
using System; using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net.Http; using System.Net.Http;
using System.Text; using System.Text;
using System.Text.Json; using System.Text.Json;
using System.Threading; using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
using Dapr.Jobs.Extensions; using Dapr.Jobs.Extensions;
using Dapr.Jobs.Models;
using Dapr.Jobs.Models.Responses;
using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Routing;
using Microsoft.AspNetCore.TestHost; using Microsoft.AspNetCore.TestHost;
using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging; using Microsoft.Extensions.Logging;
using Moq;
using Xunit;
namespace Dapr.Jobs.Test.Extensions; namespace Dapr.Jobs.Test.Extensions;

View File

@ -14,7 +14,6 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using Dapr.Jobs.Extensions; using Dapr.Jobs.Extensions;
using Xunit;
namespace Dapr.Jobs.Test.Extensions; namespace Dapr.Jobs.Test.Extensions;

View File

@ -13,7 +13,6 @@
using System; using System;
using Dapr.Jobs.Models; using Dapr.Jobs.Models;
using Xunit;
namespace Dapr.Jobs.Test.Models; namespace Dapr.Jobs.Test.Models;