Skip to content

Commit e31532b

Browse files
committed
minor clean up
1 parent e614779 commit e31532b

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/Microsoft.OpenApi.OData.Reader/PathItem/PathItemHandler.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
// ------------------------------------------------------------
55

66
using System;
7-
using System.Collections.Generic;
87
using Microsoft.OpenApi.Models;
98
using Microsoft.OpenApi.OData.Common;
109
using Microsoft.OpenApi.OData.Edm;
@@ -34,17 +33,13 @@ internal abstract class PathItemHandler : IPathItemHandler
3433
/// </summary>
3534
protected ODataPath Path { get; private set; }
3635

37-
protected IDictionary<ODataSegment, IDictionary<string, string>> ParameterMappings;
38-
3936
/// <inheritdoc/>
4037
public virtual OpenApiPathItem CreatePathItem(ODataContext context, ODataPath path)
4138
{
4239
Context = context ?? throw Error.ArgumentNull(nameof(context));
4340

4441
Path = path ?? throw Error.ArgumentNull(nameof(path));
4542

46-
ParameterMappings = path.CalculateParameterMapping(context.Settings);
47-
4843
Initialize(context, path);
4944

5045
OpenApiPathItem item = new();

0 commit comments

Comments
 (0)