Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b793af5

Browse files
committed
C#: Remove unnecessary usings
1 parent ec63acf commit b793af5

38 files changed

Lines changed: 6 additions & 67 deletions

File tree

csharp/autobuilder/Semmle.Autobuild.Shared/BuildCommandAutoRule.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.IO;
1+
using System.Collections.Generic;
42
using System.Linq;
53
using Semmle.Util.Logging;
64

csharp/autobuilder/Semmle.Autobuild.Shared/BuildCommandRule.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
3-
4-
namespace Semmle.Autobuild.Shared
1+
namespace Semmle.Autobuild.Shared
52
{
63
/// <summary>
74
/// Execute the build_command rule.

csharp/autobuilder/Semmle.Autobuild.Shared/ProjectOrSolution.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using System.Collections.Generic;
2-
using System.IO;
32
using System.Linq;
43

54
namespace Semmle.Autobuild.Shared

csharp/extractor/Semmle.Extraction.CIL.Driver/Program.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.Linq;
33
using System.Threading.Tasks;
4-
using System.IO;
54
using Semmle.Util.Logging;
65
using System.Diagnostics;
76

csharp/extractor/Semmle.Extraction.CIL/Entities/Method.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.Immutable;
33
using System.Reflection.Metadata;
4-
using Microsoft.CodeAnalysis;
54
using System.Collections.Generic;
65
using System.Reflection;
76
using System.Linq;

csharp/extractor/Semmle.Extraction.CIL/Entities/Namespace.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.IO;
4-
using Semmle.Extraction.Entities;
54

65
namespace Semmle.Extraction.CIL.Entities
76
{

csharp/extractor/Semmle.Extraction.CIL/Entities/Property.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
using System.Collections.Generic;
22
using System.Reflection.Metadata;
3-
using System.Linq;
43
using System.Reflection.Metadata.Ecma335;
54
using System.IO;
65

csharp/extractor/Semmle.Extraction.CIL/Entities/Type.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
using System.Reflection;
88
using Semmle.Util;
99
using System.IO;
10-
using System.Text;
1110
using System.Diagnostics.CodeAnalysis;
1211

1312
namespace Semmle.Extraction.CIL.Entities

csharp/extractor/Semmle.Extraction.CIL/PDB/PdbReader.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using Microsoft.DiaSymReader;
2-
using System;
1+
using System;
32
using System.Collections.Generic;
43
using System.Linq;
54
using System.Reflection.Metadata;

csharp/extractor/Semmle.Extraction.CSharp.Standalone/DotNet.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Diagnostics;
4-
using System.IO;
5-
using System.Linq;
1+
using System.Diagnostics;
62

73
namespace Semmle.BuildAnalyser
84
{

0 commit comments

Comments
 (0)