We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1f0cbf commit 27f4aa2Copy full SHA for 27f4aa2
src/Microsoft.OpenApi/Services/OpenApiWalker.cs
@@ -19,7 +19,6 @@ namespace Microsoft.OpenApi.Services
19
public class OpenApiWalker
20
{
21
private readonly OpenApiVisitorBase _visitor;
22
- private OpenApiDocument _currentDocument;
23
private readonly Stack<JsonSchema> _schemaLoop = new Stack<JsonSchema>();
24
private readonly Stack<OpenApiPathItem> _pathItemLoop = new Stack<OpenApiPathItem>();
25
@@ -42,7 +41,6 @@ public void Walk(OpenApiDocument doc)
42
41
return;
43
}
44
45
- _currentDocument = doc;
46
_schemaLoop.Clear();
47
_pathItemLoop.Clear();
48
0 commit comments