Skip to content

Commit 6e65633

Browse files
committed
Remove unnecessary usings
1 parent 6b72765 commit 6e65633

File tree

2 files changed

+1
-21
lines changed

2 files changed

+1
-21
lines changed

src/Microsoft.OpenApi/Writers/OpenApiJsonWriter.cs

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

4-
using System;
5-
using System.Collections.Generic;
64
using System.IO;
7-
using System.Linq;
8-
using System.Text;
9-
using System.Text.Json;
10-
using Json.Schema;
11-
using Json.Schema.OpenApi;
12-
using Microsoft.OpenApi.Any;
13-
using Microsoft.OpenApi.Extensions;
14-
using Microsoft.OpenApi.Models;
155

166
namespace Microsoft.OpenApi.Writers
177
{

src/Microsoft.OpenApi/Writers/OpenApiYamlWriter.cs

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

44
using System.IO;
5-
using System.Text.Json.Nodes;
6-
using System.Text.Json;
7-
using Json.Schema;
8-
using Microsoft.OpenApi.Models;
9-
using YamlDotNet.Serialization;
10-
using System.Collections.Generic;
11-
using Yaml2JsonNode;
12-
using System.Collections;
13-
using System;
145

156
namespace Microsoft.OpenApi.Writers
167
{
@@ -231,7 +222,6 @@ public override void WriteValue(string value)
231222
}
232223
}
233224

234-
235225
private void WriteChompingIndicator(string value)
236226
{
237227
var trailingNewlines = 0;

0 commit comments

Comments
 (0)