Skip to content

Commit 4bf34d3

Browse files
authored
Merge pull request #1370 from SimonCropp/remove-some-usings
remove some usings
2 parents a76f17d + 545d4b3 commit 4bf34d3

File tree

69 files changed

+4
-153
lines changed

Some content is hidden

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

69 files changed

+4
-153
lines changed

src/Microsoft.OpenApi.Hidi/Program.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
// Licensed under the MIT license.
33

44
using System.CommandLine;
5-
using System.CommandLine.Parsing;
65
using System.Threading.Tasks;
76
using Microsoft.OpenApi.Hidi.Handlers;
87
using Microsoft.OpenApi.Hidi.Options;

src/Microsoft.OpenApi.Readers/Interface/IOpenApiVersionService.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// Licensed under the MIT license.
33

4-
using System;
54
using Microsoft.OpenApi.Interfaces;
65
using Microsoft.OpenApi.Models;
76
using Microsoft.OpenApi.Readers.ParseNodes;

src/Microsoft.OpenApi.Readers/OpenApiYamlDocumentReader.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
using System;
55
using System.Collections.Generic;
6-
using System.IO;
76
using System.Linq;
87
using System.Threading;
98
using System.Threading.Tasks;

src/Microsoft.OpenApi.Readers/ParseNodes/AnyMapFieldMapParameter.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
using System;
55
using System.Collections.Generic;
66
using Microsoft.OpenApi.Any;
7-
using Microsoft.OpenApi.Interfaces;
87
using Microsoft.OpenApi.Models;
98

109
namespace Microsoft.OpenApi.Readers.ParseNodes

src/Microsoft.OpenApi.Readers/ParseNodes/ParseNode.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33

44
using System;
55
using System.Collections.Generic;
6-
using System.Text.RegularExpressions;
76
using Microsoft.OpenApi.Any;
8-
using Microsoft.OpenApi.Exceptions;
97
using Microsoft.OpenApi.Interfaces;
108
using Microsoft.OpenApi.Models;
119
using Microsoft.OpenApi.Readers.Exceptions;

src/Microsoft.OpenApi.Readers/ReadResult.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// Licensed under the MIT license.
33

4-
using System;
5-
using System.Collections.Generic;
6-
using System.Linq;
7-
using System.Text;
8-
using System.Threading.Tasks;
94
using Microsoft.OpenApi.Models;
105

116
namespace Microsoft.OpenApi.Readers

src/Microsoft.OpenApi.Readers/Services/OpenApiWorkspaceLoader.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
using System;
2-
using System.Collections.Generic;
3-
using System.IO;
4-
using System.Linq;
5-
using System.Text;
62
using System.Threading;
73
using System.Threading.Tasks;
84
using Microsoft.OpenApi.Models;

src/Microsoft.OpenApi.Readers/V2/OpenApiInfoDeserializer.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
// Licensed under the MIT license.
33

44
using System;
5-
using System.Collections.Generic;
65
using Microsoft.OpenApi.Extensions;
76
using Microsoft.OpenApi.Models;
87
using Microsoft.OpenApi.Readers.ParseNodes;

src/Microsoft.OpenApi.Readers/V2/OpenApiXmlDeserializer.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
// Licensed under the MIT license.
33

44
using System;
5-
using Microsoft.OpenApi.Exceptions;
65
using Microsoft.OpenApi.Extensions;
76
using Microsoft.OpenApi.Models;
87
using Microsoft.OpenApi.Readers.Exceptions;

src/Microsoft.OpenApi.Readers/V3/OpenApiComponentsDeserializer.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// Licensed under the MIT license.
33

4-
using System;
54
using Microsoft.OpenApi.Extensions;
6-
using Microsoft.OpenApi.Interfaces;
75
using Microsoft.OpenApi.Models;
86
using Microsoft.OpenApi.Readers.ParseNodes;
97

0 commit comments

Comments
 (0)