Skip to content

Commit 6e53ad9

Browse files
committed
Cleanup using statements
1 parent 3ca050f commit 6e53ad9

File tree

369 files changed

+13
-798
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

369 files changed

+13
-798
lines changed

src/WorkflowCore.DSL/Models/DefinitionSource.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
42

53
namespace WorkflowCore.Models.DefinitionStorage
64
{

src/WorkflowCore.DSL/Models/Envelope.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
42

53
namespace WorkflowCore.Models.DefinitionStorage
64
{

src/WorkflowCore.DSL/Models/v1/MappingSourceV1.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
42

53
namespace WorkflowCore.Models.DefinitionStorage.v1
64
{

src/WorkflowCore.DSL/Models/v1/StepSourceV1.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
using System;
22
using System.Collections.Generic;
33
using System.Dynamic;
4-
using System.Text;
54

65
namespace WorkflowCore.Models.DefinitionStorage.v1
76
{

src/WorkflowCore.DSL/ServiceCollectionExtensions.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
using System;
2-
using System.Collections.Generic;
32
using System.Linq;
4-
using System.Threading.Tasks;
5-
using Microsoft.Extensions.DependencyInjection;
63
using WorkflowCore.Interface;
74
using WorkflowCore.Services.DefinitionStorage;
85

src/WorkflowCore.DSL/Services/DefinitionLoader.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,14 @@
1-
using Newtonsoft.Json;
2-
using System;
1+
using System;
32
using System.Collections;
43
using System.Collections.Generic;
54
using System.Linq;
65
using System.Linq.Dynamic.Core;
76
using System.Linq.Expressions;
87
using System.Reflection;
9-
using System.Text;
108
using Newtonsoft.Json.Linq;
119
using WorkflowCore.Interface;
1210
using WorkflowCore.Models;
1311
using WorkflowCore.Primitives;
14-
using WorkflowCore.Models.DefinitionStorage;
1512
using WorkflowCore.Models.DefinitionStorage.v1;
1613
using WorkflowCore.Exceptions;
1714

src/WorkflowCore/Exceptions/WorkflowDefinitionLoadException.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
42

53
namespace WorkflowCore.Exceptions
64
{

src/WorkflowCore/Interface/IActivityController.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
42
using System.Threading.Tasks;
53

64
namespace WorkflowCore.Interface

src/WorkflowCore/Interface/ICancellationProcessor.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
42
using WorkflowCore.Models;
53

64
namespace WorkflowCore.Interface

src/WorkflowCore/Interface/ILifeCycleEventHub.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
42
using System.Threading.Tasks;
53
using WorkflowCore.Models.LifeCycleEvents;
64

0 commit comments

Comments
 (0)