File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed
src/Microsoft.OpenApi.OData.Reader/PathItem Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change 4
4
// ------------------------------------------------------------
5
5
6
6
using System ;
7
- using System . Collections . Generic ;
8
7
using Microsoft . OpenApi . Models ;
9
8
using Microsoft . OpenApi . OData . Common ;
10
9
using Microsoft . OpenApi . OData . Edm ;
@@ -34,17 +33,13 @@ internal abstract class PathItemHandler : IPathItemHandler
34
33
/// </summary>
35
34
protected ODataPath Path { get ; private set ; }
36
35
37
- protected IDictionary < ODataSegment , IDictionary < string , string > > ParameterMappings ;
38
-
39
36
/// <inheritdoc/>
40
37
public virtual OpenApiPathItem CreatePathItem ( ODataContext context , ODataPath path )
41
38
{
42
39
Context = context ?? throw Error . ArgumentNull ( nameof ( context ) ) ;
43
40
44
41
Path = path ?? throw Error . ArgumentNull ( nameof ( path ) ) ;
45
42
46
- ParameterMappings = path . CalculateParameterMapping ( context . Settings ) ;
47
-
48
43
Initialize ( context , path ) ;
49
44
50
45
OpenApiPathItem item = new ( ) ;
You can’t perform that action at this time.
0 commit comments