Skip to content

Commit 4213d8d

Browse files
committed
Remove unnecessary using directives
1 parent 820a55e commit 4213d8d

File tree

12 files changed

+0
-38
lines changed

12 files changed

+0
-38
lines changed

CommunityToolkit.Mvvm.SourceGenerators/ComponentModel/Models/AttributeInfo.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22
// The .NET Foundation licenses this file to you under the MIT license.
33
// See the LICENSE file in the project root for more information.
44

5-
using System;
65
using System.Collections.Generic;
7-
using System.Collections.Immutable;
86
using System.Linq;
97
using System.Threading;
108
using CommunityToolkit.Mvvm.SourceGenerators.Extensions;

CommunityToolkit.Mvvm.SourceGenerators/ComponentModel/Models/PropertyInfo.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,6 @@
22
// The .NET Foundation licenses this file to you under the MIT license.
33
// See the LICENSE file in the project root for more information.
44

5-
using System;
6-
using System.Collections.Generic;
7-
using System.Collections.Immutable;
8-
using System.Linq;
9-
using CommunityToolkit.Mvvm.SourceGenerators.Extensions;
105
using CommunityToolkit.Mvvm.SourceGenerators.Helpers;
116

127
namespace CommunityToolkit.Mvvm.SourceGenerators.ComponentModel.Models;

CommunityToolkit.Mvvm.SourceGenerators/ComponentModel/Models/TypedConstantInfo.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
// See the LICENSE file in the project root for more information.
44

55
using System;
6-
using System.Collections.Immutable;
76
using System.Linq;
87
using CommunityToolkit.Mvvm.SourceGenerators.Helpers;
98
using Microsoft.CodeAnalysis;

CommunityToolkit.Mvvm.SourceGenerators/ComponentModel/Models/ValidationInfo.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,6 @@
22
// The .NET Foundation licenses this file to you under the MIT license.
33
// See the LICENSE file in the project root for more information.
44

5-
using System;
6-
using System.Collections.Generic;
7-
using System.Collections.Immutable;
8-
using System.Linq;
9-
using CommunityToolkit.Mvvm.SourceGenerators.Extensions;
105
using CommunityToolkit.Mvvm.SourceGenerators.Helpers;
116

127
namespace CommunityToolkit.Mvvm.SourceGenerators.Input.Models;

CommunityToolkit.Mvvm.SourceGenerators/ComponentModel/ObservableRecipientGenerator.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
using CommunityToolkit.Mvvm.SourceGenerators.ComponentModel.Models;
88
using CommunityToolkit.Mvvm.SourceGenerators.Extensions;
99
using CommunityToolkit.Mvvm.SourceGenerators.Helpers;
10-
using CommunityToolkit.Mvvm.SourceGenerators.Input.Models;
1110
using CommunityToolkit.Mvvm.SourceGenerators.Models;
1211
using Microsoft.CodeAnalysis;
1312
using Microsoft.CodeAnalysis.CSharp;

CommunityToolkit.Mvvm.SourceGenerators/Extensions/DiagnosticsExtensions.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
// This file is ported and adapted from ComputeSharp (Sergio0694/ComputeSharp),
66
// more info in ThirdPartyNotices.txt in the root of the project.
77

8-
using System.Collections.Immutable;
98
using CommunityToolkit.Mvvm.SourceGenerators.Helpers;
109
using CommunityToolkit.Mvvm.SourceGenerators.Models;
1110
using Microsoft.CodeAnalysis;

CommunityToolkit.Mvvm.SourceGenerators/Helpers/HashCode.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,8 @@
22
// The .NET Foundation licenses this file to you under the MIT license.
33
// See the LICENSE file in the project root for more information.
44

5-
using System.Collections.Generic;
65
using System.ComponentModel;
76
using System.Runtime.CompilerServices;
8-
using System.Runtime.InteropServices;
97
using System.Security.Cryptography;
108

119
#pragma warning disable CS0809

CommunityToolkit.Mvvm.SourceGenerators/Input/Models/CommandInfo.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,6 @@
22
// The .NET Foundation licenses this file to you under the MIT license.
33
// See the LICENSE file in the project root for more information.
44

5-
using System;
6-
using System.Collections.Generic;
7-
using System.Collections.Immutable;
8-
using System.Linq;
9-
using CommunityToolkit.Mvvm.SourceGenerators.Extensions;
105
using CommunityToolkit.Mvvm.SourceGenerators.Helpers;
116

127
namespace CommunityToolkit.Mvvm.SourceGenerators.Input.Models;

CommunityToolkit.Mvvm.SourceGenerators/Messaging/Models/RecipientInfo.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,6 @@
22
// The .NET Foundation licenses this file to you under the MIT license.
33
// See the LICENSE file in the project root for more information.
44

5-
using System;
6-
using System.Collections.Generic;
7-
using System.Collections.Immutable;
8-
using System.Linq;
9-
using CommunityToolkit.Mvvm.SourceGenerators.Extensions;
105
using CommunityToolkit.Mvvm.SourceGenerators.Helpers;
116

127
namespace CommunityToolkit.Mvvm.SourceGenerators.Input.Models;

CommunityToolkit.Mvvm.SourceGenerators/Models/DiagnosticInfo.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,8 @@
55
// This file is ported and adapted from ComputeSharp (Sergio0694/ComputeSharp),
66
// more info in ThirdPartyNotices.txt in the root of the project.
77

8-
using System;
9-
using System.Collections.Generic;
108
using System.Collections.Immutable;
119
using System.Linq;
12-
using CommunityToolkit.Mvvm.SourceGenerators.Extensions;
1310
using CommunityToolkit.Mvvm.SourceGenerators.Helpers;
1411
using Microsoft.CodeAnalysis;
1512
using Microsoft.CodeAnalysis.Text;

CommunityToolkit.Mvvm.SourceGenerators/Models/HierarchyInfo.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@
55
// This file is ported and adapted from ComputeSharp (Sergio0694/ComputeSharp),
66
// more info in ThirdPartyNotices.txt in the root of the project.
77

8-
using System;
9-
using System.Collections.Generic;
10-
using System.Collections.Immutable;
11-
using System.Linq;
128
using CommunityToolkit.Mvvm.SourceGenerators.Extensions;
139
using CommunityToolkit.Mvvm.SourceGenerators.Helpers;
1410
using Microsoft.CodeAnalysis;

CommunityToolkit.Mvvm.SourceGenerators/Models/Result.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,6 @@
66
// more info in ThirdPartyNotices.txt in the root of the project.
77

88
using System;
9-
using System.Collections.Generic;
10-
using System.Collections.Immutable;
11-
using System.Linq;
12-
using CommunityToolkit.Mvvm.SourceGenerators.Extensions;
139
using CommunityToolkit.Mvvm.SourceGenerators.Helpers;
1410

1511
namespace CommunityToolkit.Mvvm.SourceGenerators.Models;

0 commit comments

Comments
 (0)